PHP Code:
#include <amxmodx>
new roundnr = 1;
public plugin_init()
register_logevent("Event_RoundStart", 2, "1=Round_Start")
public Event_Roundstart()
{
client_print(0, print_chat, "This is round number %i", roundnr)
roundnr++;
}
@reinert:
You can display the round number in client_print so if and else if in not neccesary, and you don't have id in HLTV.
__________________