25.07.2009, 21:55
Keep your primary coordinates on the AddPlayerClass, and do the following:
Under 'public OnPlayerSpawn' add the following:
SetPlayerInterior(playerid, ChangeThisToYourInteriorID);
Example:
That would make the user spawn in a jail cell.
Under 'public OnPlayerSpawn' add the following:
SetPlayerInterior(playerid, ChangeThisToYourInteriorID);
Example:
Код:
public OnPlayerSpawn(playerid)
{
SetPlayerPos(playerid, 346.870025,309.259033,1000.0);
SetPlayerInterior(playerid, 6);
return 1;
}

