I got it working, had to disable bin-logging in my.conf and restart mysql. Then I needed to change the load_bots.sql file from the PEQ SVN.
It comes like this:
Code:
source player_tables/botadventuring.sql;
source player_tables/botbuffs.sql;
source player_tables/botpetstatepersists.sql;
source player_tables/botinventory.sql;
source player_tables/botgroups.sql;
source player_tables/bots.sql;
However that will not source properly because botadventuring.sql needs the bots table in the eq database. Which does not get generated until bots.sql is ran. So I needed to move the bots.sql line to the top, like so...
Code:
source player_tables/bots.sql;
source player_tables/botadventuring.sql;
source player_tables/botbuffs.sql;
source player_tables/botpetstatepersists.sql;
source player_tables/botinventory.sql;
source player_tables/botgroups.sql;
Then all worked fine.