Originally Posted by
Cedrick1
/in has been disabled by the bliz interface atleast with casting it is blocked
I was working on this a year ago....
I think there a possibility with a loop :
Code:
/script for i=0,9999 do
local temp = 0;
if temp == 0 then cast YourSpell; temp=1; end;
in 60 temp = 2;
if temp==2
then i=0; temp=0;
end;
Something like that...
Not working, must have syntax errors but i think we can get something working using loops and in !
Got :
Code:
/run CreateFrame"Frame":SetScript("OnUpdate",function(f,e)f.e=(f.e or 0)+e if f.e<300 then return end f.e=0 SendChatMessage("Test")end)
To send a message in the chat every 300sec (5 minutes) but it doesn't prevent the auto afk thing.