03.10.2010, 07:16
All you need is the co-ordinates, which you get from typing /save ingame.
Heres what I have:
then you need the cam view, from which you would view your class/skin
Heres what I have:
Код:
public OnGameModeInit() { // Don't use these lines if it's a filterscript SetGameModeText("blank"); AddPlayerClass(202,-2670.7700,2481.4480,37.3377,349.2175,0,0,0,0,0,0); // }
Код:
public OnPlayerRequestClass(playerid, classid) { SetPlayerPos(playerid, -2187.8889,-209.3007,36.5156); SetPlayerCameraPos(playerid, -2183.1418,-209.9554,36.5156); SetPlayerCameraLookAt(playerid, -2187.8889,-209.3007,36.5156); return 1; }