Advertisement
Guest User

Untitled

a guest
May 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ON $*:TEXT:/^[.!@](M|Mime)/Si:#:{
  2. var %a = Mardi Jaimy Bobbyy
  3. if ($istok(%a,$nick,32)) {
  4. if ($2 !== $null) && ($2 ison $chan) {
  5. notice $nick I'm now miming $2
  6. set %MimeTarg $2
  7. }
  8. else {
  9. notice $nick ERROR $2 isn't on this channel
  10. }
  11. }
  12. }
  13.  
  14. ON $*:TEXT:/^[.!@](Un|U|De|D)(M|Mime)/Si:#:{
  15. var %a = Mardi Jaimy Bobbyy
  16. if ($istok(%a,$nick,32)) {
  17. notice $nick I stopped miming $2
  18. unset %MimeTarg
  19. }
  20. if (%MimeTarg !== $null) {
  21. notice $nick I wasn't miming
  22. }
  23. }
  24.  
  25. ON *:TEXT:*:#:{
  26. if ($nick == %MimeTarg) {
  27. msg $chan $1-
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement