With SVN 326 you can test the new skill use timing functionality. There is a new profile option
Code: Select all
<option name="SKILL_USE_PRIOR" value="300" />
With that you can say the bot to cast x ms earlier (before cooldown is finished) and to leave the 'casting time wait coding' x ms earlier. The default value is 300ms.
You can test, what's the best value to cast more earlier.
Does anyone knows, how much the general cooldown value between using skills is?
There are also some new debugging options
Code: Select all
<onLoad>
-- Additional Lua code to execute after loading the profile
-- and before the bot starts. e.g. You could overwrite profile settings here
-- like: changeProfileOption("HP_REST", 60);
settings.profile.options.DEBUG_SKILLUSE.ENABLE = true;
settings.profile.options.DEBUG_SKILLUSE.TIMEGAP = true;
settings.profile.options.DEBUG_SKILLUSE.ONCOOLDOWN = true;
settings.profile.options.DEBUG_SKILLUSE.HPLOW = false;
</onLoad>
You can enter them in your profile (but in the onload event) to see the time-gaps between casts and the value in ms we are below or over an cooldown. I would recommend to delete all buff skills in your profile for testing purpose. Just to not be spammed with messages to much.