14.09.2014, 07:05
This error

And here this code

And here this code

public OnPlayerConnect(playerid)
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof name);
name[0] = toupper(name[0]); // Character 0 is the first letter in the text (name) , so it will be now in any case: Jack, Frank, Samy
SetPlayerName(playerid, name);
return 1;
}