ID:154214
 
How would I go about sending a switch("YES"or"NO") question to another player, where they have to select either Yes or No for something to take place???

LJR
Check the reference under input() it tells you just what you need.
In response to Nadrew
I know with input how to do it, but I'm wondering how to get it to work with something like:

switch(alert("Pick Yes or No?",,"Yes","No"))

if("Yes")
...do whatever
if("No")
...do whatever

LJR
In response to LordJR
The same way as input()

Format:
alert(Usr=usr,Message,Title,Button1="Ok",Button2,Button3)
In response to Nadrew
sweet thanks... At work with the Blue Book as my only reference at the moment.

LJR
In response to LordJR
LordJR wrote:
At work with the Blue Book as my only reference at the moment.

If you can get to the forum, you can get to the reference. The link is at the left in the nav frame. :)
In response to Shadowdarke
oh oh I keep forgetting about that! And its semi-updated too!! Great. I'll keep this in mind, why do I even take my Blue Book to work!? :P

LJR