28.03.2010, 00:06
you are using the same coords 3 times. the camera is actually watching the character, but its not far enough to be in front of the "lens". so just modify the cameras' position to 2 units west (x-axis -2), so it becomes:
Код:
public OnPlayerRequestClass(playerid, classid) { SetPlayerPos(playerid, 2020.6265, 1007.7409, 10.8203); SetPlayerCameraPos(playerid, 2018.6265, 1007.7409, 10.8203); SetPlayerCameraLookAt(playerid, 2020.6265, 1007.7409, 10.8203); SetPlayerColor(playerid, 0xFFFFFF); return 1; }