PHP Code:
new bool:g_bRestarting;
public plugin_init()
{
register_event("TextMsg", "Event_TextMsg_Restart", "a", "2&#Game_C", "2&#Game_w");
register_event("HLTV", "Event_HLTV_New_Round", "a", "1=0", "2=0");
}
public Event_TextMsg_Restart()
{
g_bRestarting = true;
}
public Event_HLTV_New_Round()
{
if( g_bRestarting )
{
g_bRestarting = false;
// Set score to 0-0 here
}
}
Also, you may have to send TeamScore message to connecting or just connected players.
__________________