Jump to content

Join our Slack

Talk to other users and have a great time
Slack Server

Welcome to our Community

Click here to get your Exiled Bot license
Donation Store
Sign in to follow this  
heisenburger

Mini cooldown during combat

Recommended Posts

For skills like flame totem with Ancestral Bond, it's useful to cast two totems quickly with very short delays, and wait a few seconds to cast another two totems. If this is implemented, it'd be much appreciated.

 

Idea for a "simple" fix: for each skill in "skills.ini", add a second cooldown variable and a cast counter variable.

 

Assuming the current bot does something like this:

 

while (mob_in_range)

     cast_skill();

     wait(1000);  //1000 is user defined

 

 

Suggested version:

 

while (mob_in_range) {

 

   cast_skill();

   count++;

   wait(50);  //50 is user defined

   

   if (count >= user_defined_val) {

        count = 0;

        wait(1000); //1000 is user defined

   }

 

}

 

 

This will allow the bot to use a skill several times in short bursts followed by a longer cooldown. 

Edited by heisenburger

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...