Files
2014-07-05 21:04:40 +03:00

11 lines
354 B
Plaintext

/client/verb/rolldice()
set name = "Roll the Dice!"
set desc = "Rolls the Dice of your choice!"
set category = "OOC"
var/list/choice = list(10, 20, 50, 100)
var/input = input("Select the Dice you want!", "Dice", null, null) in choice
var/conclusion = "[usr] rolls [rand(1,input)] out of [input]!"
for(var/mob/O in viewers(src))
O << conclusion