ID:179980
 
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.
it is simple the only thing that will do that is an input box or choice box here is the code

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")





Alert ( http://byond.com/docs/ref/info.html#/proc/alert )does what you want. It is limited to three buttons.
In response to Shadowdarke
Ok thanks.
In response to Shadowdarke
Ok thanks.
In response to WizDragon
WizDragon wrote:
Ok thanks.

Also, for future reference, please look in the FAQ to see if a question is answered in there before you post here.

This question was.