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?