Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- on *:text:!bomb:#:{
- set %bombtime $r(20,60)
- msg $chan $nick has found a bomb! Quickly defuse the bomb by cutting the correct wire! Use !cut <wire> | msg $chan Wires: red, blue, green, black or pink
- set %color $r(1,5)
- if (%color == 1) { set %color red }
- if (%color == 2) { set %color blue }
- if (%color == 3) { set %color green }
- if (%color == 4) { set %color black }
- if (%color == 5) { set %color pink }
- set %bombnick $nick
- timerBomb 1 %bombtime explode $chan
- }
- on *:text:!cut *:#:{
- if ($nick == %bombnick) {
- if ($2 == %color) {
- msg $chan You defused the bomb!
- unset %bombnick
- timerBomb off
- }
- else {
- explode $chan
- timerBomb off
- }
- }
- else {
- msg $chan Only %bombnick can defuse the bomb!
- }
- }
- alias explode {
- kick $1 %bombnick BOOM!
- unset %bombnick
- }
Advertisement
Add Comment
Please, Sign In to add comment