13.04.2009, 20:35
You need to edit this part:
SetPlayerPos is where the player is setted in the skinselectionmenubackground.
SetPlayerCameraPos is from where the camera "looks" at the skin.
SetPlayerCameraLookAt is hwere the Camera looks, usually the same position where the Player is located.
You can add if you want more stuff like interior or Anim etc.
Код:
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
return 1;
}
SetPlayerCameraPos is from where the camera "looks" at the skin.
SetPlayerCameraLookAt is hwere the Camera looks, usually the same position where the Player is located.
You can add if you want more stuff like interior or Anim etc.

