08.02.2010, 19:30
Code:
forward RandomServerNames(); new SVNAMES[1][256] = { "Name", "Name" }; public RandomServerNames() { new string[256]; new random1 = random(sizeof(SVNAMES)); format(string, sizeof(string), "hostname %s", SVNAMES[random1] ); SendRconCommand(string); return 1; }