Top

Russian Roulette


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Nov 07, 2009
Last Updated  Nov 11, 2009

Introduction

This is a simple Russian roulette game I made up.I wuz bored :I Just type `Rroulette. Kinda hard to get hit but if your trying to, expect some spam :I
Any problems plz notify me.

Attempting to update a little and add a few timers.
Didnt work.. :I
So I just add 6 more shots..making it even harder to get shot sadly ;-;

Grab the Code

on *:text:`Rroulette:#{
msg $chan So you wanna test your luck against me eh $nick ? 
msg $chan *filps a revolver up in the air*
msg $chan *catches it and fires at $nick !
}
if ($rand(1,6) != 1) {
msg $chan *CLICK!* :I | halt
}
if ($rand(1,6) != 2) {
msg $chan *CLICK!* Lucky... | halt
}
if ($rand(1,6) != 3) {  
msg $chan Well..
msg $chan die for it! >:} 
kick $chan $nick Bang! x.x
}
if ($rand(1,6) != 4
msg $chan *CLICK!* (-_-) | halt
}
if ($rand(1,6) != 5
msg $chan *CLICK* damnit
}
if ($rand(1,6) != 6
msg $chan *CLICK* $%^#!
/me throws the gun at $nick
kick $chan $nick :/
 
 

Comments

  (7)  RSS
FordLawnmower
Comments: 412
 
mIRC Snippet:  Russian Roulette
Posted on Nov 7, 2009 7:40 pm
You should use timers on the messages so they don't all come out at one time.
Also, why does your gun only a 3 shooter?
Grant-
Comments: 92
 
mIRC Snippet:  Russian Roulette
Posted on Nov 7, 2009 8:13 pm
Okay, out of boredom I changed it up a bit :P
Code:
on $*:text:/^[@.!`]Rroulette$/Si:#:{
  msg $chan So you wanna test your luck against me eh $nick $+ ?
  describe $chan flips a revolver up in the air, and then catches it and fires at $nick $+ !
  var %x $r(1,3)
  if (%x == 1) {
    msg $chan *CLICK!* :I
  }
  if (%x == 2) {
    msg $chan *CLICK!* Lucky...
  }
  else { 
    msg $chan Well..
    .timer 1 1 kick $chan $nick 4Bang! x.x
 }
}
Cracker200
Comments: 258
 
mIRC Snippet:  Russian Roulette
Posted on Nov 10, 2009 10:11 am
LOL if this was real i'd love it :D
Gage
Comments: 16
 
mIRC Snippet:  Russian Roulette
Posted on Nov 11, 2009 2:54 pm
I tried to add some timers fordlawnmower but it gave me some problems. Im going to try again and see my results.
Gage
Comments: 16
 
mIRC Snippet:  Russian Roulette
Posted on Nov 11, 2009 2:55 pm
By the way, its a 3 shooter because I wanted to up the chance of someone getting shot :I
GlobalAnomaly
Comments: 77
 
mIRC Snippet:  Russian Roulette
Posted on Nov 11, 2009 3:36 pm
Code:

on *:text:`RRoulette:#: {
  set %RRoulette.num $r(1,3)
  set %RRoulette.target $r(1,3)
  .msg # So you wanna test your luck against me eh $+($nick,?)
  .describe # flips a revolver in the air..
  .describe # catches it and fires at $+($nick,!)
  if (%RRoulette.num == %RRoulette.target) { .describe # BOOM! A bullet hit $+($nick,!) | .timer 1 1 kick # $nick BOOM! | unset %RRoulette.num | unset %RRoulette.target | halt }
  else {
    .msg # CLICK! $nick got lucky!!
    unset %RRoulette.num
    unset %RRoulette.target
  }
}
Gage
Comments: 16
 
mIRC Snippet:  Russian Roulette
Posted on Nov 13, 2009 6:04 pm
?

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom