Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. :?:/p::
  2. :?:/pickup::
  3. {
  4. Loop, Read, %A_MyDocuments%\GTA San Andreas User Files\SAMP\chatlog.txt
  5. {
  6. if (RegExMatch(A_LoopReadLine, "Dein Handy klingelt\. Tippe \/pickup\. Anrufer\-ID\: (.*)")) {
  7. RegExMatch(A_LoopReadLine, "Dein Handy klingelt\. Tippe \/pickup\. Anrufer\-ID\: (.*)", caller_)
  8. }
  9. }
  10.  
  11. if (caller_1 != "") {
  12. SendChat("/p")
  13. SendChat("Guten " getTime() " " . caller_1 . ", Sie sprechen mit " getPlayerName() ".")
  14. SendChat("Wie kann ich Ihnen behilflich sein?")
  15. } else {
  16. SendChat("/p")
  17. SendChat("Guten " getTime() " Anrufer, Sie sprechen mit " getPlayerName() ".")
  18. SendChat("Wie kann ich Ihnen behilflich sein?")
  19. }
  20. }
  21. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement