Aimcac

Rock Paper Scissors script

Sep 25th, 2014
1,028
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.34 KB | None | 0 0
  1.  
  2. on *:text:!rps*:#:{
  3.   msg $chan  $+ $nick shoots:
  4.  
  5.   set %dynamite $rand(1,20)
  6.  
  7.   if (%dynamite == 20) { msg $chan   DYNAMITE. YOU WIN EVERYTHING FOREVER. }
  8.   else {
  9.  
  10.     set %rps $rand(1,3)
  11.  
  12.     if (%rps == 1) {  msg $chan   Rock! }
  13.     if (%rps == 2) {  msg $chan   Paper! }
  14.     if (%rps == 3) {  msg $chan  Scissors! }
  15.   }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment