Advertisement
ZeddTT

Untitled

Apr 18th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. on *:text:!votekick *:#ToontownFellowship,#Zedd, #bae: {
  2. set %kickchan $chan
  3. set %kicktime 40
  4. set %exceptions
  5. if (%voteon == on) {
  6. notice $nick A votekick is already taking place.
  7. }
  8. else {
  9. set %nick $$2
  10. set %voteon on
  11. if (%voteon == on) {
  12. .timer 1 %kicktime firetimer
  13. .timer 1 %kicktime set %voteon off
  14. .timer 1 %kicktime unset %voted
  15. .timer 1 %kicktime set %up 0
  16. .timer 1 %kicktime set %down 0
  17. set %voteon on
  18. msg %kickchan Voting to kick %nick has started. Type !yes or !no to vote.
  19. }
  20.  
  21. else {
  22. notice $nick You need to be a channel operator to call a votekick.
  23. halt
  24. }
  25. }
  26. }
  27.  
  28. on *:text:!yes:#ToontownFellowship,#Zedd,#bae: {
  29. if ($istok(%voted,$address,32)) {
  30. notice $nick You have already voted.
  31. halt
  32. }
  33. if (%voteon == off) {
  34. notice $nick Voting is currently off.
  35. halt
  36. }
  37. else {
  38. %voted = $addtok(%voted,$address,32)
  39. inc %up 1
  40. msg %kickchan Victim: %nick Yes: %up - No: %down
  41. }
  42. }
  43.  
  44. on *:text:!no:#ToontownFellowship,#Zedd,#bae: {
  45. if ($istok(%voted,$address,32)) {
  46. notice $nick You have already voted.
  47. halt
  48. }
  49. if (%voteon == off) {
  50. notice $nick Voting is currently off.
  51. halt
  52. }
  53. if (%voteon == on) {
  54. %voted = $addtok(%voted,$address,32)
  55. inc %down 1
  56. msg %kickchan Victim: %nick Yes: %up - No: %down
  57. }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement