05.05.2020, 07:15
You might want to change the
or add break in that last if condition
It sends to all players and the loop still iterates for other players in duel too as no break in iteration is provided and therefore, it repeats the message.
PHP Code:
SendClientMessageToAll(DUEL, string);
PHP Code:
if(DuelCountdown == 0)
{
/*your code*/
break;
}