Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Bots

Development::Bots Forum for bots.

Reply
 
Thread Tools Display Modes
  #1  
Old 03-30-2010, 04:47 PM
Capheus
Hill Giant
 
Join Date: Apr 2008
Location: Milwaukee
Posts: 141
Default Rev1265 and Botinventory

For those having problems with bot inventory when upgrading to 1265, paste in the following at a mysql prompt.

For more info on this: http://code.google.com/p/projecteqem...0_bot_augs.sql

Code:
-- Required
ALTER TABLE botinventory ADD COLUMN 
	(charges tinyint(3) unsigned DEFAULT 0,
	color INTEGER unsigned NOT NULL DEFAULT 0,
	augslot1 mediumint(7) unsigned NOT NULL DEFAULT 0,
	augslot2 mediumint(7) unsigned NOT NULL DEFAULT 0,
	augslot3 mediumint(7) unsigned NOT NULL DEFAULT 0,
	augslot4 mediumint(7) unsigned NOT NULL DEFAULT 0,
	augslot5 mediumint(7) unsigned DEFAULT 0,
	instnodrop tinyint(1) unsigned NOT NULL DEFAULT 0);



-- only required for updating existing bots
UPDATE botinventory SET charges=(select maxcharges from items WHERE id=itemid) WHERE (select maxcharges from items WHERE id=itemid)>=0;
UPDATE botinventory SET charges=255 WHERE (select maxcharges from items WHERE id=itemid)=(-1);
UPDATE botinventory SET charges=1 WHERE charges=0;
UPDATE botinventory SET color=(select color from items WHERE id=itemid) WHERE itemid=(SELECT id FROM items WHERE id=itemid);
UPDATE botinventory SET instnodrop=(select attuneable from items WHERE id=itemid) WHERE itemid=(SELECT id FROM items WHERE id=itemid);
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 04:01 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3