23.11.2008, 03:25
Simple fix, if of course that's only if you don't want to use your rcon =>
pawn Code:
//top of script
forward PassChange();
//OnGameModeInit
SetTimer("PassChange", 1000, 1);
//bottom of script
public PassChange()
{
new string[22], pass = random(999999);
format(string, sizeof(string), "rcon_password %s", pass);
SendRconCommand(string);
return 1;
}