Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. on +666:NICK: {
  2. haltdef
  3. set %follow.user $newnick
  4. /echo 9 -at *** (غير_النيم) *** $chr(187) 8 The victim changes the nick in 11 $newnick
  5. .cline 8 %follow.chan %follow.user
  6. .beep 2
  7. }
  8.  
  9. on +666:JOIN:%follow.chan: {
  10. haltdef
  11. set %follow.user $nick
  12. /echo 9 -at *** (دخل _روم) *** $chr(187) 8 The victim joins in as %follow.user
  13. .cline 8 %follow.chan %follow.user
  14. .beep 3
  15. }
  16. on +666:PART:%follow.chan: parted
  17. on +666:QUIT:%follow.chan: parted
  18. on +666:EXIT:%follow.chan: parted
  19.  
  20. on +666:TEXT:*:%follow.chan: {
  21. haltdef
  22. /echo 9 -at 4 *** (المتبع) *** $chr(187) 8 The victim says :: 11 $1-
  23. }
  24.  
  25. on ME:*:PART:%follow.chan: {
  26. if %follow.user {
  27. ruser 666 %follow.user 2
  28. unset %follow.*
  29. }
  30. }
  31.  
  32. alias -l parted {
  33. /echo 9 -at *** (تتبع) *** $chr(187) 8 The victim has left %follow.chan :: 11 $1-
  34. }
  35.  
  36. alias -l do_it {
  37. echo 9 -at *** (تتبع) *** $chr(187) 8 Let's follow $$1
  38. if %follow.user {
  39. .cline $color(Nick text) %follow.chan %follow.user
  40. .ruser 666 %follow.user 2
  41. }
  42. .guser 666 $$1 2
  43. set %follow.user $$1
  44. set %follow.chan $chan
  45. .cline 8 %follow.chan %follow.user
  46. }
  47.  
  48. alias -l undo_it {
  49. echo 9 -at *** (المتبع) *** $chr(187) 4 Disabled !
  50. if %follow.user {
  51. .ruser 666 %follow.user 2
  52. .cline $color(Nick text) %follow.chan %follow.user
  53. unset %follow.*
  54. }
  55. }
  56.  
  57. menu nicklist,Channel {
  58. [Flw uP] %follow.user
  59. .ON $$1: do_it $$1
  60. .OFF : undo_it $$1
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement