25.06.2012, 20:18
Oh right.
Well basically, you need to use "SetPlayerFacingAngle" FIRST, then use "SetCameraBehindPlayer".
So first, you need to make the player's character face towards grove street, and then move the camera behind them e.g.
Well basically, you need to use "SetPlayerFacingAngle" FIRST, then use "SetCameraBehindPlayer".
So first, you need to make the player's character face towards grove street, and then move the camera behind them e.g.
pawn Код:
if(!strcmp(cmdtext,"/grove",true)){
SetPlayerPos(playerid,....);
SetPlayerFacingAngle(playerid,ANGLE);
SetCameraBehindPlayer(playerid);
}