11.01.2013, 16:27
How do i make it so that all players that firstly join will have a standard skin and dont have to select one at the class selection screen
public OnPlayerRequestClass(playerid, classid)
{
SpawnPlayer(playerid);
return 1;
}
public OnPlayerConnect(playerid)
{
SetPlayerSkin(playerid, 0);
return 1;
}