16.12.2014, 15:46
pawn Код:
stock GetName(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
return name;
}
You're using two things of the same name, and it's confusing the compiler as to which one you want to use.