I need help with my sorcercess kolbot script

Hello, im getting that Classic " bad attack config, dont expect your bot to attack this is my current cold sorc attack script! please help /* Attack config
* To disable an attack, set it to -1
* Skills MUST be POSITIVE numbers. For reference see http://pastebin.com/baShRwWM
*/
Config.AttackSkill[0] = -1; // Preattack skill.
Config.AttackSkill[1] = -59; // Primary skill to bosses.
Config.AttackSkill[2] = -39; // Primary untimed skill to bosses. Keep at -1 if Config.AttackSkill[1] is untimed skill.
Config.AttackSkill[3] = -59; // Primary skill to others.
Config.AttackSkill[4] = -39; // 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] = -36; // 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] = -1; // Untimed low mana skill.
1 Like

im somewhat of a noob but i think if you take out the - before 39, 36 and 39 you should attack

maybe like this?

  • To disable an attack, set it to -1
  • Skills MUST be POSITIVE numbers. For reference see http://pastebin.com/baShRwWM
    */
    Config.AttackSkill[0] = -1; // Preattack skill.
    Config.AttackSkill[1] = 59; // Primary skill to bosses.
    Config.AttackSkill[2] = 39; // Primary untimed skill to bosses. Keep at -1 if Config.AttackSkill[1] is untimed skill.
    Config.AttackSkill[3] = 59; // Primary skill to others.
    Config.AttackSkill[4] = 39; // 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] = 36; // Secondary untimed skill if monster is immune to primary untimed.

thank you for the help! I actually ran into another issue few hours later after getting the bot to run!, now when my bot starts, it will run, go get healed, go to the way point, do its battle commands and etc, it will tele to the place but as soon as it gets close to a crowd of people it will says your connection has been interrupted

thanks for the awesome information.