Save the code als swim.au3 and start it (you need AutoIt)
This script allows you to swim while exhausticated with a lv 1 priest as long as you want to
to start it press F1 to kill it F2
Code:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.2.10.0
Title: Auto Exhaustionswimmer for lv 1 Priests
Author: blubb12345
Script Function:
Allwos you to swim while influenced by Exhaustion
#ce ----------------------------------------------------------------------------
MsgBox(0,"","F1 start, F2 kill process; use arrow right/left to navigate and NEVER heal by your own hands!")
HotKeySet("{F1}", "go")
HotKeySet("{F2}", "kill")
Func go()
HotKeySet("{F1}")
While 1
send("3")
Sleep(3950)
Send("{w down}")
sleep(7600)
send("{w up}")
sleep(25)
WEnd
HotKeySet("{F1}", "go")
EndFunc
Func kill()
HotKeySet("{F2}")
exit
HotKeySet("{F2}", "kill")
EndFunc
Func idle()
while 1
Sleep(1000)
WEnd
EndFunc
idle()