Advertisement
Guest User

saybal

a guest
Sep 22nd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. $${
  2. //Bind to OnChat and OnSendChatMessage
  3.  
  4. IF(%KEYNAME%="onSendChatMessage")
  5. IFMATCHES(%CHAT%,"^/saybal (.+)")
  6. MATCH(%CHAT%,"^/saybal (.+)",{@&saybalplayer})
  7. ECHO("/bal %@&saybalplayer%")
  8. SET(@saybal,1)
  9. FILTER
  10. ENDIF
  11. ELSE
  12. IFMATCHES(%@saybal%,1)
  13. STRIP(&chat,%CHAT%)
  14. IFMATCHES(%&chat%,"^Balance of %@&saybalplayer%")
  15. MATCH(%&chat%,"^Balance of %@&saybalplayer% (.*)",{&balance})
  16. ECHO("The balance of %@&saybalplayer% is %&balance%")
  17. SET(@saybal,0)
  18. ELSE
  19.  
  20. IFMATCHES(%&chat%,"^Player not found")
  21. SET(@saybal,0)
  22. ENDIF
  23. ENDIF
  24. ENDIF
  25. ENDIF
  26. }$$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement