Does that mean they get the score but if they try again no score ?
Can't seem to find anything on scores .
Can't seem to find anything on scores .
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
#sectionend repeatedly_execute // DO NOT EDIT OR REMOVE THIS LINE
function random_look() { // This is used to generate random messages in the unhandled event
random = Random(5); // this is line 73
if (random==0) Display ("Trust me, you don't wanna look at the %s.", name);
else if (random==1) Display ("There's nothing important at the %s.", name);
else if (random==2) Display ("Looking at the %s is a waste of time.", name);
else if (random==3) Display ("There are no clues at the %s.", name);
else if (random==4) Display ("Looking at the %s won't help.", name);
else if (random==5) Display ( "OK, I looked at %s, now what?", name);
}
function random_use() { // same for the use mode
random = Random(5);
if (random==0) Display ("No time for experiments with the %s.", name);
else if (random==1) Display ("I can't do anything with the %s.", name);
else if (random==2) Display ("Using the %s now may freeze your computer.", name);
else if (random==3) Display ("Are you sure that you want to use the %s?", name);
else if (random==4) Display ("Use the %s now? You must be kidding.", name);
else if (random==5) Display ("There's no way you can make me use the %s.", name);
}
function pickup(){ // same for take mode
random = Random(5);
if (random==0) Display ("I don't wanna carry the %s around.", name);
else if (random==1) Display ("Having the %s with me won't help.", name);
else if (random==2) Display ("I can't take the %s, my inventory is full.", name);
else if (random==3) Display ("Are you sure that you want to pick up the %s?", name);
else if (random==4) Display ("Pick up the %s? Are you crazy.", name);
else if (random==5) Display ("I feel to weak. I can't carry the %s.", name);
}
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.204 seconds with 14 queries.