05.12.2014, 18:21
Well Trollerz. At the top of script add:
Under OnPlayerDeath add:
A command wich showin' Deaths.
pawn Код:
new Deaths[MAX_PLAYERS]; // Variable for Deaths
pawn Код:
Deaths[playerid]++; // Will increase deaths for that player
pawn Код:
CMD:mydeaths(playerid, params[])
{
new string[50];
format(string, sizeof(string), "You curentlly have %d Deaths", Deaths);
SendClientMessage(playerid, -1, string);
return 1;
}