I have the same issue, if I fix it Ill let you know.
edit: Fixed -
You need to edit two tables for bots on the latest RoF2 code.
table botbuffs:
add a column dot_rune after MagicRune as an INT
vwbotcharactermobs:
The view should read this:
select _utf8'C' AS `mobtype`,`c`.`id` AS `id`,`c`.`name` AS `name`,`c`.`class` AS `class`,`c`.`level` AS `level`,`c`.`last_login` AS `timelaston`,`c`.`zone_id` AS `zoneid` from `character_data` `c` union all select _utf8'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` `b`
|