RE: [Request] Dice roller!
Fairly simple to do, just a case of doing a nice gui and stuff, all you have to do to get the random number is use:
var diceroll=Math.floor(Math.random()*6) + 1;
Then you can add that into commands, menu items, customizable ways to show it, etc.
|