Advertisement
Guest User

Untitled

a guest
Oct 12th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #IfWinActive, GTA:SA:MP
  2. #Include SAMP.ahk
  3. #Persistent
  4. #UseHook
  5. #SingleInstance Force
  6. #NoEnv
  7.  
  8. ;Keybinder Startup Msg.
  9. SetTimer, Startup, On
  10. ;ReadChat
  11. SetTimer, ReadChat1, On
  12.  
  13.  
  14. ;Keybinder Init
  15. t::
  16. Suspend On
  17. SendInput t
  18. Hotkey, Enter, On
  19. Hotkey, Escape, On
  20. Hotkey, t, Off
  21. return
  22.  
  23. NumpadEnter::
  24. Enter::
  25. Suspend Permit
  26. Suspend Off
  27. SendInput {Enter}
  28. Hotkey, t, On
  29. Hotkey, Enter, Off
  30. Hotkey, Escape, Off
  31. return
  32.  
  33. Escape::
  34. Suspend Permit
  35. Suspend Off
  36. SendInput {Escape}
  37. Hotkey, t, On
  38. Hotkey, Enter, Off
  39. Hotkey, Escape, Off
  40. return
  41.  
  42.  
  43. ;~ Startup:
  44. ;~ GetChatLine(0, Chatline2, timestamp=0, color=0)
  45. ;~ If (InStr(Chatline2, "Loginphase"))
  46. ;~ {
  47. ;~ SendChat("Ein Geiler Typ")
  48. ;~ }
  49.  
  50.  
  51. ReadChat1:
  52. GetChatLine(0, Chatline1, timestamp=0, color=0)
  53. If (InStr(Chatline1, "Wer bin ich"))
  54. {
  55. SendChat("Ein Geiler Typ")
  56.  
  57. }
  58. return
  59.  
  60. Numpad1::
  61. addChatMessage("[HALLO WELT]")
  62. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement