F1 - Start Script (
to start script, don't focus on dragon nest window make it inactive then press F1)
F2 - Pause Script/Resume Script
*Just adjust the SLEEP so it wont spam skills too fast.
*RESOLUTION must be: 1366x768 windowed mode.
WHAT IT DOES:
-spam skills 2-5
-Types "I" and erase it immediately (to avoid being kicked in the lobby.)
-Moves mouse once in a while to avoid AWAY status during PvP. (Depends on the sleep amount)
PS: Calculate all the SLEEP amount, 'coz you should type a letter every 30 seconds so, try to make SLEEP total at least 35000. just do the basic math.
*i used Autohotkey for this script.
*copy and paste this code in notepad, and save it as .ahk
*its not a program or sumthing, its just a script.
*Not detected at all.
"i afk'ed @ the arena in like 2 days. and you can just leave it until Server maintenance.

*do some other stuffs while afk'ing in the arena.
*
here is the code:
F1::
SetTitleMatchMode, RegEx
GroupAdd,DragonNest, ahk_class %DRAGONNEST%
Loop
{
Sleep, 2000
controlclick,X400 Y719,DragonNest,,R
Sleep, 2000
controlclick,X440 Y719,DragonNest,,R
mousemove, 100,-30,10,R
Sleep, 2000
controlclick,X500 Y719,DragonNest,,R
Controlsend,,{Space},DragonNest
Sleep, 2000
controlclick,X550 Y719,DragonNest,,R
Sleep, 2000
controlclick,X384 Y741,DragonNest,,L
Controlsend,,I,DragonNest
Controlsend,,{backspace},DragonNest
Sleep, 2000
mousemove, -100,30,50,R
}
F2::Pause
Return