What proc lets me make a little pop up box and give me some choices? Not the input box, the box with button choices, kinda like this:
/----------------\
| Are you happy? |
| /---\ /---\ |
| |Yes| |No | |
| \---/ \---/ |
\----------------/
and you can click on Yes or No. So how would I get one of those to appear?
NOTE: It looked better in the white box.
ID:179980
![]() Sep 25 2001, 12:30 pm
|
|
Alert ( http://byond.com/docs/ref/info.html#/proc/alert )does what you want. It is limited to three buttons.
|
var/whatever = input("Whatever you want to put in here")in list("Yes","No")
if ("Yes")
[Tab]src<<"YADDA YADDA YA"
if ("No")
[tab]src<<"Whatever you want in here")