10.07.2015, 13:24
This should work:
PHP код:
#define COLOR_RED 0xAA3333AA // At the top of your gamemode.
new PassAttempt[MAX_PLAYERS];
Pass Attempt[playerid] ++;
if(PassAttempt[playerid] == 3)
{
SendClientMessage(playerid, COLOR_RED,"Warning: You were kicked from the server due to multiple password input failure.");
Kick(playerid);
return 1;
}