13.03.2019, 16:01
You have to create that for your own:
You can look up in the wiki the specific functions and change that, to whatever you want
PHP код:
//In OnGameModeInit
SetTimer("SendServerMessage", 1000*60*5, 0); //Sends after 5min a Message to the server
//Outside any function
forward SendServerMessage();
public SendServerMessage()
{
SendClientMessageToAll(-1, "* This is a Message, sent after 5min of the Server start!");
return 1;
}
