plz help for script

08/03/2007 17:39 diesis33#1
i need one simple and external afk that not spam ever the same key..


i find auto respond add on, and i configure it every time he see letter "e" (frequeentely) e respond in a partychat whit somethig and that let me te dont go afk.. the problem is that i can ever have a party.. my idea is to use the function "reply is a script" that let me to wrote one script and exec it..

this script must only do to wisp my self something..

can some one tell me that easy script? or can someone tell me one simple afk?
08/03/2007 20:26 4C1D^#2
can you please write in normal english, i can't understand anything Oo
08/03/2007 20:30 X-Matrix#3
You cant build Antiafk with an Lua Addon. ;) Your need an Autoitscript.
08/04/2007 07:09 ray89#4
Code:
While 1
	Send("1")
	Sleep(Int(Random(180000, 240000)))
	WEnd
Will send button 1 randomly every 3-4 Minutes (not seconds^^) to the active window.
08/04/2007 12:19 4C1D^#5
nope
A) that is autoit (just for the info)
B) that would send 1 every 180 - 240 seconds to the active window
08/04/2007 17:55 ray89#6
Sry I had some problems in understanding diesis33's post, but as far as I understood:
Quote:
or can someone tell me one simple afk?
That's what I posted. Yes, it's an AutoIt script...
Quote:
CODE*
While 1
Send("1")
Sleep(Int(Random(180000, 240000)))
WEnd

Will send button 1 randomly every 3-4 Seconds to the active window.
Quote:
B) that would send 1 every 180 - 240 seconds to the active window
That's what I wanted to write. Every 3-4 Minutes, not every 3-4 seconds of course XD thx