View Single Post
  #3  
Old 07-21-2007, 02:57 PM
GeorgeS
Forum Guide
 
Join Date: Sep 2003
Location: California
Posts: 1,475
Default

Just updated the NPC Editing Tool with the ability to create BOTS now. DL the newest version now. So creating a BOT is easy now - all you must have is the SQL

CREATE TABLE `botinventory` (
`npctypeid` int(11) NOT NULL default '0',
`botslotid` int(11) default NULL,
`itemid` int(11) default NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `botleader` (
`botid` int(11) NOT NULL default '0',
`leaderid` int(11) default NULL,
PRIMARY KEY (`botid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
ALTER TABLE npc_types add `isbot` tinyint(4) NOT NULL;

Next you run my editor and then Under Tools select NPC Editing Tool and also to view the Bots, under Tools select Identify ALL RAID/BOTS and then you can go edit happy.

What's not done is inventory, and I'm working on this now...

http://66.159.225.58/eqemu/GeorgeS_EqEmu_Files.zip

Under HELP in the zip there's a few .html docs on this program. I juts updated it so the BOT creation is described there in more detail - but really, it's very simple...

GeorgeS
__________________
Your source for EQ database tools
Toolshop is open for business


http://www.georgestools.chrsschb.com//

Last edited by GeorgeS; 07-21-2007 at 11:02 PM..
Reply With Quote