Advertisement
Doug4347

Check for AFK

Jun 20th, 2016
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  2. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  3. Chatlog = %A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  4. BackupDir = LibDoug\MTG Chatlog backups\AFK System
  5. Loop,
  6. {
  7. AFKChecked:=False
  8. FileRead, ChatlogFileContents, %Chatlog%
  9. IfInString, ChatlogFileContents, You will be AFK kicked in 60 seconds!
  10. {
  11.     StartTime:=A_TickCount
  12.     Loop,
  13.     {
  14.         TotalTime:=A_TickCount=StartTime
  15.         TimeLeft:=30000-TotalTime
  16.         SoundBeep
  17.         If AFKChecked
  18.         {
  19.             Sleep, 500
  20.             Break
  21.         }
  22.         If TotalTime > 30000\
  23.         {
  24.             SendInput, t^a/q`n
  25.             Sleep, 10000
  26.             Break
  27.         }
  28.         SendInput, t^a%TimeLeft%
  29.     }
  30. }
  31. }
  32.  
  33. !1::
  34.     FileCreateDir, %BackupDir%
  35.     FileMove, %Chatlog%, %BackupDir%\%A_Now%.txt
  36.     AFKChecked:=True
  37. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement