06.08.2017, 10:52
Код HTML:
forward UpdateHostName(); public GameModeInit() { SetTimer("UpdateHostName",1000,1); // Update your timer as you wish. return 1; } public UpdateHostName() { new hostname = random(3); switch (hostname) { case 0: SendRconCommand("hostname HOSTNAME #1"); case 1: SendRconCommand("hostname HOSTNMAME #2"); case 2: SendRconCommand("hostname HOSTNAME #3"); }