20.12.2012, 08:54
Quote:
okay that helped now all i got is undefined symbol "GetName
|
The one who "made" the code for you has a custom function to get a player's name, and he/she simply copy-pasted his own code.
To fix either use GetPlayerName (check the wiki) or simply add this function on the bottom of your script:
pawn Код:
GetName(playerid)
{
new
szN[ 24 ];
GetPlayerName( playerid, szN, sizeof( szN ));
return szN;
}