Run this into mysql, its for merchantlist_temp error
CREATE TABLE merchantlist_temp (
npcid int(10) unsigned NOT NULL default '0',
slot tinyint(3) unsigned NOT NULL default '0',
itemid int(10) unsigned NOT NULL default '0',
charges int(10) unsigned NOT NULL default '1',
UNIQUE KEY merchantid (npcid,slot)
) TYPE=MyISAM;
Run this for the npc error :
ALTER TABLE npc_types ADD npc_aggro TINYINT NOT NULL DEFAULT '0';
|