24.08.2011, 20:52
PHP код:
forward message();
public OnGameModeInit()
{
print("Starting timer...");
SetTimer("message", 3000, false); // Set a timer of 3000 miliseconds (3 seconds)
}
public message()
{
print("3 Seconds have passed, you must die.");
}