Seal activating macro - bannable?
 Posted: Tue Feb 16, 2016 3:45 pm
Posted: Tue Feb 16, 2016 3:45 pmHi,
i wrote an addon which store the current client time on a specific slash command.
(you want to press a macro with this slash command every time you're auto attack goes off...)
another slash command checks if you have enough time to judge before next auo swing:
if this is the case it will do it....
code:
Now my question: is using this addon considert as botting?
			i wrote an addon which store the current client time on a specific slash command.
(you want to press a macro with this slash command every time you're auto attack goes off...)
another slash command checks if you have enough time to judge before next auo swing:
if this is the case it will do it....
code:
- Code: Select all
- local nextSwing = 0
 local attackSpeed = 0
 SLASH_SWING1 = "/store";
 SLASH_JUDGE1="/judge";
 SlashCmdList.SWING = function()
 nextSwing = getTime();
 attackSpeed = UnitAttackSpeed("player");
 end
 SlashCmdList.JUDGE = function()
 
 if attackSpeed - (GetTime() - nextSwing) > 0
 then
 
 CastSpellByName("judgement(Rank 1)")
 end
 
 end
Now my question: is using this addon considert as botting?

