There's 8 rule name changes starting here:
https://github.com/EQEmu/Server/blob...pdate.pl#L1119
You'll need to update the names to match what the server code uses.
Code:
if(get_mysql_result("SELECT `rule_name` FROM `rule_values` WHERE `rule_name` LIKE 'Bots:BotAAExpansion'") ne "" && $db){
print get_mysql_result("UPDATE `rule_values` SET `rule_name` = 'Bots:AAExpansion' WHERE `rule_name` LIKE 'Bots:BotAAExpansion';");
}
if(get_mysql_result("SELECT `rule_name` FROM `rule_values` WHERE `rule_name` LIKE 'Bots:AAExpansion'") eq "" && $db){
print get_mysql_result("INSERT INTO `rule_values` VALUES ('1', 'Bots:AAExpansion', '8', 'The expansion through which bots will obtain AAs');");
}
It sounds like you have the old rule names in place..so, you should be able to just run the 8 UPDATE queries.
Still not sure why your install wouldn't register for the updater script.