Crowther
Active member
Showing the code was why I was trying to make a simple example.
I checked this string and it was indead "skill [7336]Multi-Bounce".
EDIT:
The full code (without my modifications) can be found here: https://github.com/Loathing-Associa...eta/RELEASE/scripts/autoscend/auto_combat.ash
Code:
return useSkill($skill[[7336]Multi-Bounce]);
Code:
string useSkill(skill sk, boolean mark)
{
if(mark)
markAsUsed(sk);
return "skill " + sk;
}
string useSkill(skill sk)
{
return useSkill(sk, true);
}
EDIT:
The full code (without my modifications) can be found here: https://github.com/Loathing-Associa...eta/RELEASE/scripts/autoscend/auto_combat.ash
Last edited: