Seal activating macro - bannable?

Seal activating macro - bannable?

by GeniusTT » Tue Feb 16, 2016 3:45 pm

Hi,

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?
GeniusTT
Tester
 

Re: Seal activating macro - bannable?

by Dreez » Tue Feb 16, 2016 3:50 pm

that is perfectly fine

pretty much anything you do with addons is fine as long as the addon isn't doing stuff while you are afk (that's the point were the rules are vague)
Dreez - PvP server
<Endzeit>
User avatar
Dreez
Knight-Lieutenant
Knight-Lieutenant
 

Re: Seal activating macro - bannable?

by GeniusTT » Tue Feb 16, 2016 4:49 pm

thank you ;)
GeniusTT
Tester
 

Re: Seal activating macro - bannable?

by schaka » Tue Feb 16, 2016 6:03 pm

Why don't you just count auto-swing timer from the last one recorded in combat log?
schaka
Senior Sergeant
Senior Sergeant
 

Re: Seal activating macro - bannable?

by GeniusTT » Wed Feb 17, 2016 3:54 pm

do you have a code example? :)
GeniusTT
Tester
 


Return to Addons & macros