when round end [all alive players CT get +1 frag]
PHP Code:
public plugin_init()
{
register_logevent("logevent_round_end", 2, "1=Round_End")
}
public logevent_round_end(id)
if(is_user_alive(id) && cs_get_user_team(id) == CS_TEAM_CT)
{
set_user_frags(id, get_user_frags(id) + 1)
client_print(id, print_chat, "[RoundEnd] Yeah, You've Earned +1 Frag!");
}