I always get errors when executing batch files (.sql) files into world db.
I am using ArcEmu, the sql is made for arcemu, so what the hell is happening xD?
I always get errors when executing batch files (.sql) files into world db.
I am using ArcEmu, the sql is made for arcemu, so what the hell is happening xD?
What are the errors? Can you copy and paste the sql in code tags, please? Need some more info before we can help. ^.^
Trying to make an NPC for my LUA script...Code:[Err] 1054 - Unknown column 'unk4' in 'field list' [Err] insert into `creature_names` (`entry`, `name`, `subname`, `info_str`, `Flags1`, `type`, `family`, `rank`, `unk4`, `spelldataid`, `male_displayid`, `female_displayid`, `male_displayid2`, `female_displayid2`, `unknown_float1`, `unknown_float2`, `civilian`, `leader`) values ('76666', "Taxi", "Teleporter NPC", '', '0', '7', '0', '3', '0', '0', '27545', '0', '0', '0', '1', '1', '1', '0'); [Msg] Finished - Unsuccessfully
The LUA is fine, but the NPC can't even make it to theDB lol
Can you post the SQL that you are executing?
The SQL you are executing is not compatible with your database, basically.
All you need to do is remove the entry "unk4".
All I did was remove the unk4 column (9th from the front) then remove the 9th value from the frontCode:INSERT INTO `creature_names` (`entry`, `name`, `subname`, `info_str`, `Flags1`, `type`, `family`, `rank`, `spelldataid`, `male_displayid`, `female_displayid`, `male_displayid2`, `female_displayid2`, `unknown_float1`, `unknown_float2`, `civilian`, `leader`) values ('76666', "Taxi", "Teleporter NPC", '', '0', '7', '0', '3', '0', '27545', '0', '0', '0', '1', '1', '1', '0');