
06-30-2001, 07:33 AM
|
|
Psionic Youth
|
 |
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
|
|
|
Ordinary:
if(playerenters||timeout){
shootball;
timeout=5;
}
There will only be one timeout running, and that only for the first to enter the level (he sets the timeout, everyone else's setting is ignored).
Multiplayer:
if(playerenters||timeout){
shootball;
timereverywhere;
timeout=5;
}
Timereverywhere makes a seperate instance of the timer for everyone who enters the level. So player 1 has his timeout, etc. |
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."
"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
 - My pet, the Levelup Gnome
http://forums.graalonline.com/forums...&postcount=233
|
|
|
|