Advertisement
Guest User

Untitled

a guest
Oct 12th, 2019
88
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 Init
  9. t::
  10. Suspend On
  11. SendInput t
  12. Hotkey, Enter, On
  13. Hotkey, Escape, On
  14. Hotkey, t, Off
  15. return
  16.  
  17. NumpadEnter::
  18. Enter::
  19. Suspend Permit
  20. Suspend Off
  21. SendInput {Enter}
  22. Hotkey, t, On
  23. Hotkey, Enter, Off
  24. Hotkey, Escape, Off
  25. return
  26.  
  27. Escape::
  28. Suspend Permit
  29. Suspend Off
  30. SendInput {Escape}
  31. Hotkey, t, On
  32. Hotkey, Enter, Off
  33. Hotkey, Escape, Off
  34. return
  35.  
  36. ;Keybinder Startup Msg.
  37. SetTimer, Startup, On
  38. ;ReadChat
  39. SetTimer, ReadChat1, On
  40.  
  41. Startup:
  42. GetChatLine(0, Chatline2, timestamp=0, color=0)
  43. If (InStr(Chatline2, "Loginphase"))
  44. {
  45. SendChat("Ein Geiler Typ")
  46. }
  47.  
  48.  
  49.  
  50. ReadChat1:
  51. GetChatLine(0, Chatline1, timestamp=0, color=0)
  52. If (InStr(Chatline1, "Wer bin ich"))
  53. {
  54. SendChat("Ein Geiler Typ")
  55.  
  56. }
  57. return
  58.  
  59. Numpad1::
  60. addChatMessage("[HALLO WELT]")
  61. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement