Is there a way to check when a round starts in natural-selection (after the four beeps)?
I found this thread, but I doesn't seem to work
http://forums.alliedmods.net/showthread.php?t=42159
Code:
public plugin_init()
{
register_logevent("round_start", 2, "1=Round_Start")
}
public round_start() {
new players[32], num
get_players(players, num)
new player
for(new i = 0; i < num; i++)
{
player = players[i]
client_print(player, print_chat, "start")
}
}