mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-07-17 18:52:20 +01:00
11 lines
354 B
Plaintext
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 |