17.04.2016, 21:59
Hey guys, as far as I have been told in the forums, If I want to script a stoppable stretcher system then I should do it using SetObjectPos over OnPlayerUpdate, and so I tried
But the offsets are too weird, sometimes I fly on the stretcher beacuse im on it's front
How can I do the Rotation to be on the LEFT of the character no matter what his angle is
Current code:
But the offsets are too weird, sometimes I fly on the stretcher beacuse im on it's front
How can I do the Rotation to be on the LEFT of the character no matter what his angle is
Current code:
PHP код:
if(MovingStretcher[playerid] == 1)
{
new Float:pos[3], Float:A;
GetPlayerFacingAngle(playerid, A);
GetPlayerPos(playerid, pos[0], pos[1], pos[2]);
SetObjectPos(StretcherObj[playerid], pos[0]-1.00, pos[1], pos[2]-0.50);
SetObjectRot(StretcherObj[playerid], 0.00, 0.00, A);
}