Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.23 KB | None | 0 0
  1.  
  2. on *:TEXT:*:#: {
  3. if (!aim == $strip($1)) {
  4. if ($2 ison $chan) {
  5. if ($me == $2) { msg $chan Not Me! | halt }
  6. msg $chan $nick aims at $2
  7. set %aim $rand(1,6)
  8. if (%aim == 1) msg $chan $nick goes to take the shot but the scope falls off
  9. elseif (%aim == 2) msg $chan $nick aims at $2 and slips, hits his head on a tree!
  10. elseif (%aim == 3) msg $chan $nick is just getting $2 in there scope and Leg shot!
  11. elseif (%aim == 4) msg $chan $nick jumps to shot and HS!
  12. elseif (%aim == 5) msg $chan $2 can see $nick and takes the shot before $nick
  13. elseif (%aim == 6) msg $chan $nick hits bush YES!
  14. unset %aim
  15. }
  16. elseif (!$2) { msg $chan No Nick in my scope }
  17. elseif ($2 !ison $chan) { msg $chan There not in range of this channel }
  18. }
  19. if (!Blowup == $strip($1)) {
  20. if ($2 ison $chan) {
  21. if ($me == $2) { msg $chan Not Me! | halt }
  22. set %bomb $2
  23. msg $chan $nick plants a time bomb on $2
  24. msg $chan You better Run!
  25. msg $chan Type !defuse to stop it
  26. .timer 1 200 unset %bomb
  27. }
  28. elseif (!$2) { msg $chan There not here }
  29. elseif ($2 !ison $chan) { msg $chan Can't hit them with c4 }
  30. }
  31. if (!defuse == $strip($1)) {
  32. if ($nick == %bomb) {
  33. msg $chan Here it goes!
  34. set %defuse $rand(1,5)
  35. if (%defuse == 1) msg $chan You did it *relief*
  36. elseif (%defuse == 2) msg $chan Wrong Wire Wrong Wire! NO!
  37. elseif (%defuse == 3) msg $chan I don't know what you did but that worked
  38. elseif (%defuse == 4) msg $chan You Stupid *BOOM*
  39. elseif (%defuse == 5) msg $chan $me whips it up in the air You Dumy
  40. unset %defuse
  41. unset %bomb
  42. }
  43. else { msg $chan You don't have a bomb on you | haltdef }
  44. }
  45. if (!pcall == $strip($1)) {
  46. if ($2 ison $chan) {
  47. if ($me == $2) { msg $chan Not Me! | halt }
  48. msg $chan Calling $2...
  49. set %pcall $rand(1,5)
  50. if (%pcall == 1) .timer 1 5 msg $chan $2 is your refrigerator running? Then you better catch it!
  51. elseif (%pcall == 2) .timer 1 5 msg $chan $2 is there an I.P. Freely there?
  52. elseif (%pcall == 3) .timer 1 5 msg $chan $2 is there a john there? Then how do you goto the washroom?
  53. elseif (%pcall == 4) .timer 1 5 msg $chan 3
  54. elseif (%pcall == 5) .timer 1 5 msg $chan 4
  55. unset %pcall
  56. }
  57. elseif (!$2) { msg $chan Who do i call? }
  58. elseif ($2 !ison $chan) { msg $chan I don't pay long distance }
  59. }
  60. if (!number == $strip($1)) {
  61. if (!%num) {
  62. set -u60 %num $rand(1,100)
  63. msg $chan I have set a number, it is between 1 and 100.
  64. msg $chan To make a guess, type: !guess Number_Here
  65. msg $chan Start guessing now, you have one minute to guess the number.
  66. }
  67. else { msg $chan A game is currently in progress. }
  68. }
  69. if (!guess == $strip($1)) {
  70. if (!%num) { msg $chan There is no game in progress. }
  71. else {
  72. if ($2 < $($+(%,num),2)) { msg $chan Higher. }
  73. if ($2 > $($+(%,num),2)) { msg $chan Lower. }
  74. if ($2 == $($+(%,num),2)) { msg $chan Bingo. $nick guessed the right number %num $+ . }
  75. }
  76. }
  77. if (!slots == $strip($1)) {
  78. set -u20 %s1 $rand(1,3)
  79. if (%s1 == 1) msg $chan Fisrt one is OP
  80. elseif (%s1 == 2) msg $chan Fisrt is HOP
  81. elseif (%s1 == 3) msg $chan First is VOP
  82. set -u20 %s2 $rand(1,3)
  83. if (%s2 == 1) msg $chan Second one is OP
  84. elseif (%s2 == 2) msg $chan Second is HOP
  85. elseif (%s2 == 3) msg $chan Second is VOP
  86. set -u20 %s3 $rand(1,3)
  87. if (%s3 == 1) msg $chan Third one is OP
  88. elseif (%s3 == 2) msg $chan Third is HOP
  89. elseif (%s3 == 3) msg $chan Third is VOP
  90. if (%s1 == 1) && (%s2 == 1) && (%s3 == 1) {
  91. msg $chan You won!
  92. }
  93. elseif (%s1 == 2) && (%s2 == 2) && (%s3 == 2) {
  94. msg $chan You won!
  95. }
  96. elseif (%s1 == 3) && (%s2 == 3) && (%s3 == 3) {
  97. msg $chan You won!
  98. }
  99. else { msg $chan You lost }
  100. }
  101. if (!8ball == $strip($1)) {
  102. if ($me isin $2-) { msg $chan Not Me! | halt }
  103. set %8ball $rand(1,4)
  104. if (%8ball == 1) msg $chan Maybe..
  105. elseif (%8ball == 2) msg $chan YES
  106. elseif (%8ball == 3) msg $chan NO
  107. elseif (%8ball == 4) msg $chan Depends
  108. unset %8ball
  109. }
  110. else { haltdef }
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement