29.10.2019, 11:06
Code:
for (new i = 0; i != MAX_PLAYERS; i ++)
{
if (LottoNumber[i] != LottoNum) {
SendClientMessage(i, COLOR_WHITE, "{FFFF00}LOTTO: Unfortunately you haven't won the lottery. Good luck next time!");
continue;
}
// award player here
break; // break here if you only want 1 lottery winner
}

