16.03.2013, 20:55
Код:
stock GetPlayerFirstName(playerid){
new String[2][MAX_PLAYER_NAME];
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid,pName, MAX_PLAYER_NAME);
split(pName, String, '_');
return String[0];
}
This code won't work, via SendClientMessage and such. Would like any of you smartheads out there to help me

Thanks in advance.


