that's exactly what I was looking for. Thanks very much~
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
int m = 0;
function hDoor_Interact()
{
if(m == 0) Display("You shove at the door in a manly way. It laughs at your muscles.");
if(m == 1) Display("Undeterred, you begin to pound on the door like a dozen madmen.");
if(m == 2) Display("Because of your unwavering determination and singleminded concentration, the door..... remains shut.");
m++;
if(m == 3) m = 0;
}
function ShowRandomLine( param string[] arrText )
{
int x = Random(arrText.Length - 1);
Display( arrText[x] );
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.032 seconds with 13 queries.