Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.89 KB | None | 0 0
  1. on *:text:!bomb:#runearmada: {
  2.   if ($nick ison $chan) {
  3.     msg $chan 14OH NO! $nick has decided to bomb $2 $+ ! Quickly $2 Defuse that bomb! Type 4!cut red 12!cut blue 14or 9!cut green 14to defuse the bomb. You have %bombtime seconds!
  4.     set %bombtime $r(20,60)
  5.     set %color1 $r(1,3)
  6.     if (%color1 == 1) { set %color red }
  7.     elseif (%color1 == 2) { set %color blue }
  8.     elseif (%color1 == 3) { set %color green }
  9.     set %bombnick $nick
  10.     timerBomb 1 %bombtime kick $chan $nick -^~^-^~^-!BOOM!-^~^-^~^- Times up :)
  11.     timer 1 %bombtime unset %bombnick
  12.   }
  13. }
  14. on *:text:!cut *:#: {
  15.   if (($nick == %bombnick) && ($2 == %color)) { msg $chan Congratulation you have defused the bomb! | unset %bombnick | timerBomb off }
  16.   elseif (($nick == %bombnick) && ($2 != %color)) { kick $chan $nick -^~^-^~^-!BOOM!-^~^-^~^- you cut the wrong wire -_- | unset %bombnick | timerBomb off }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement