29.12.2011, 13:18
pawn Код:
format(GangZone[gzid][Dono], strlen(GetNick(pid)), GetNick(pid));// Linha 90
pawn Код:
GangZone[gzid][Dono] = strlen(GetNick(pid));
pawn Код:
stock GetNick(playerid)
{
GetPlayerName(playerid, a);
return a;
}
pawn Код:
stock GetNick(playerid)
{
new
a[MAX_PLAYER_NAME];
GetPlayerName(playerid, a);
return a;
}