19.12.2009, 17:25
How would i make it so my server's host name changes every few seconds like this one? : 67.228.177.42:3700
forward HostNameChange();
public OnGameModeInit()
{
SetTimer( "HostNameChange", true, 10*1000 ); //timer will execute every 10th second
return true;
}
public HostNameChange()
{
//here do the hostname change
}