11.07.2012, 16:24
pawn Код:
stock GetPlayerShortName(playerid)
{
new playerName[MAX_PLAYER_NAME], findString;
GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
findString = strfind(playerName, "_", true);
if(findString != 0)
{
strdel(playerName, 1, findString+1);
strins(playerName, ". ", 1);
}
return playerName;
}
The use is the same of clarencecuzz's code.