I had the same problem. It seems related to this view that needs to be created. I get a syntax error when trying to run this as a query in MYSQL 5.045
it stops on "union all"
errormessage is "1271 - Illegal mix of collations for operation 'UNION'
if I only create the view to read from character_ without the union it seems to work, however I will likely have problems as it seems this view helps prevent duplicate names for bots as it compares character names as well as bot names for duplicates.
Sure enough I can create the bots now but it allows duplicate bot names which really messes things up.
If anyone can fix the syntax in the view create below it would be much apprecieated.
Code:
DROP VIEW IF EXISTS `vwBotCharacterMobs`;
CREATE VIEW `vwBotCharacterMobs` AS
select 'C' as mobtype,
c.id,
c.name,
c.class,
c.level,
c.timelaston,
c.zoneid
from character_ as c
union all
select 'B' as mobtype,
b.BotID as id,
b.Name as name,
b.Class as class,
b.BotLevel as level,
0 as timelaston,
0 as zoneid
from bots as b;