Page 4 of 4

Re: Zunar's Games

PostPosted: February 26th, 2010, 5:40 am
by agentms11
Code: Select all
message = show_message_ext( "What do you want to say?" , "Hi" , "Hello" , "Bye");
if message = 1
{
Do something;
}
else if message = 2
{
Do another something;
}
else if message = 3
{
Do something different;
}

This one?
I tested it and it works.
Just to test it, do this.
Code: Select all
message = show_message_ext( "What do you want to say?" , "Hi" , "Hello" , "Bye");
if message = 1
{
show_message( "You said Hi!!!" );
}
else if message = 2
{
show_message( "You said Hello!!!" );
}
else if message = 3
{
show_message( "You said Bye!!!" );
}

Re: Zunar's Games

PostPosted: March 1st, 2010, 3:37 pm
by Zunar
Ok ty! :D