Guest User

Untitled

a guest
Jun 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.45 KB | None | 0 0
  1. on *:TEXT:dice:#:{
  2.   var %nicks = Mossssie Patje
  3.   if ($istok(%nicks, $nick, 32)) {
  4.     var %aantal = 1, %sides = 100
  5.     if ($int($2) isnum 1-) {
  6.       var %aantal = $int($2)
  7.     }
  8.     if ($int($3) isnum 1-) {
  9.       var %sides = $int($3)
  10.     }
  11.     var %i = 0
  12.     while (%i <= %aantal) {
  13.       inc %i
  14.       .timer 1 $calc(%i * 2) msg $chan $nick Rolled A %sides $+ -sided die, die %i of %aantal $+ : Result $rand(1, %sides)
  15.     }
  16.   }
  17. }
  18.   }
  19. }
Add Comment
Please, Sign In to add comment