Constant server hostname change?
#1

How would i make it so my server's host name changes every few seconds like this one? : 67.228.177.42:3700
Reply
#2

Use a timer and SendRconCommand


EDIT: example :P

pawn Код:
forward HostNameChange();

public OnGameModeInit()
{
    SetTimer( "HostNameChange", true, 10*1000 ); //timer will execute every 10th second
    return true;
}

public HostNameChange()
{  
    //here do the hostname change
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)