Originally Posted by
ernsty
hey man i downloaded your FLO yesterday, it works fine as hell. but i have a problem.
when my char gets reported and get that debuff so it doesn't get any honor, it logs out.
the MaxAfkReports is set to 1000.
what have i done wrong? have i missed some settings or something?
would love your help! other than that.. a GREAT bot man.!
The code suggests the bot should try to log out and back in after 5 minutes following an afk report - to make it seem like you actually went afk. Here's the relevant code:
PHP Code:
( If G_AfkReports == Ini_MaxAfkReports ) Then
WowScreenshot()
add2log("AFK DEBUFF - max - quitting wow and ending bot",2)
WinClose("World of Warcraft")
...
else
;here the logout is send per wow-addon... and after 5 mins is should log back in
WowScreenshot()
AdlibDisable() ;The Function no longer gets called every 1 seconds
add2log("AFK-DEBUFF detected... logging out and waiting 5 mins",2)
Sleep(5*60000+20000+20000); waits 5 mins + amount loggout-time
Send("{ENTER}"); loggs back in
...
EndIf