Hello,
I need here some help, how can i add here that the rounds reset if player is a nemesis?
PHP Code:
if(gamemode == MODE_NEMESIS)
{
if (i < get_pcvar_num(round))
{
i=1;
static name[32]
get_user_name (id, name, 32)
client_print(0, print_chat, "%s has been slayed!", name)
user_kill(get_user_userid(id))
}
}
If its the 6 round, then should be reset to 0. I hope anyone can help me ;)