02.02.2014, 02:23
Quote:
|
Did it. But now i got
PHP код:
|
The error "undefined symbol "(..)" " means that whatever it tells you is not in the script and is being called. You have to either add the missing function by yourself scripting it from zero or change it and adapt to your current script functions.
pawn Код:
stock RemoveUnderScore(playerid)
{
new name[MAX_PLAYER_NAME],pos;
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
while(strfind(name,"_",true) != -1)
{
pos = strfind(name,"_",true);
name[pos] = ' ';
}
return name;
}


