I have a bot set up as follows:
Config.AttackSkill[0] = -1; // Preattack skill.
Config.AttackSkill[1] = 45; // Primary skill to bosses.
Config.AttackSkill[2] = -1; // Primary untimed skill to bosses. Keep at -1 if Config.AttackSkill[1] is untimed skill.
Config.AttackSkill[3] = 45; // Primary skill to others.
Config.AttackSkill[4] = -1; // Primary untimed skill to others. Keep at -1 if Config.AttackSkill[3] is untimed skill.
Config.AttackSkill[5] = -1; // Secondary skill if monster is immune to primary.
Config.AttackSkill[6] = -1; // Secondary untimed skill if monster is immune to primary untimed.
// Low mana skills - these will be used if main skills can't be cast.
Config.LowManaSkill[0] = -1; // Timed low mana skill.
Config.LowManaSkill[1] = 0; // Untimed low mana skill.
And yet when the bot is low on mana, it won’t auto attack. Instead the bot just stands there and waits until they’re able to cast the original attack skill again.
Any ideas?