Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. ~^::
  2. Suspend Permit
  3. if(IsInChat())
  4. return
  5. if(!IsPlayerInAnyVehicle())
  6. {
  7. AddChatMessage("{5B89CB}Cop-Keybinder:{FEFEFE}Du bist in keinem Fahrzeug!")
  8. return
  9. }
  10. SendChat("/d <-- übernimmt den Auftrag")
  11. Loop, read, %A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  12. {
  13. IfInString, A_LoopReadLine,"cb"
  14. {
  15. RegExMatch(A_LoopReadLine, "cb (.*) (.*)",cbclear)
  16. SendChat("/clearbeschuss " cbclear1 " " cbclear2)
  17. break
  18. }
  19. IfInString, A_LoopReadLine,"cb"
  20. {
  21. RegExMatch(A_LoopReadLine, "c (.*) (.*) (.*)",clear)
  22. SendChat("/clear "clear1 " "clear2 " "clear3)
  23. }
  24. }
  25. SendChat("/d <-- hat den Auftrag ausgeführt!")
  26. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement