Detaljan opis problema: Pa Napravio sam Stock GetPlayerNameEx i sad mi daje Warnings " warning 202: number of arguments does not match definition " daj pomozite...
Dio skripte:Stock !
Neke slike/video za lakse dobivanje pomoci(neobavezno): Nemora Mislim...
stock GetPlayerNameEx(playerid)
{
new string;
GetPlayerName(playerid,string,24);
new str;
strmid(str,string,0,strlen(string),24);
for(new i = 0; i < MAX_PLAYER_NAME; i++)
{
if (str == '_') str = ' ';
}
return str;
}