05.08.2009, 18:09
Quote:
|
Originally Posted by Don Correlli
|
This is the code:
Код:
forward message();
public OnGameModeInit( )
{
print("Starting timer...");
SetTimer("message",1000,false);
}
public message()
{
print("1 second has passed.");
}
Код:
SetTimer("message",1000,false);
So for changing gamemode i would need to put there something like this?: (but where should i put this?)
Код:
gamemode = 1;

