Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. ON *:TEXT:+add *:#: {
  2. set $+(%,info,$2) $2-
  3. msg $chan Your info has been saved to $2 }
  4.  
  5. ON *:TEXT:+info &:#: {
  6. if ($($+(%,info,$2),2)) {
  7. msg $chan Info for $+($2,:) $ifmatch
  8. }
  9. else {
  10. msg $chan $2 does not have any info saved
  11. }
  12. }
  13.  
  14. ON *:TEXT:+del &:#: {
  15. if ($($+(%,info,$2),2)) {
  16. msg $chan Your info $2 has been deleted
  17. unset $+(%,info,$2)
  18. }
  19. else {
  20. msg $chan $2 does not have any info saved
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement