31.03.2012, 00:38
You need to update your streamer First , then you have to put Rot position and speed inside the script itself. Assigning Rot Position is a new feature of SAMP 0.3d
you have to make your moving script like
MoveObject(objectid, Float:X, Float:Y, Float:Z, Float:Speed, Float:RotX = -1000.0, Float:RotY = -1000.0, Float:RotZ = -1000.0);
Example
reference topic -
https://sampforum.blast.hk/showthread.php?tid=295590
you have to make your moving script like
MoveObject(objectid, Float:X, Float:Y, Float:Z, Float:Speed, Float:RotX = -1000.0, Float:RotY = -1000.0, Float:RotZ = -1000.0);
Example
pawn Код:
// Create the object at the center of San Andreas [just used for example]
new eg_obj = CreateObject(1234, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0);
// Rotate the object by 180 degrees on the z axis
MoveObject(eg_obj, 0, 0, 3+0.0001, 0.0001, 0.0, 0.0, 180.0);
reference topic -
https://sampforum.blast.hk/showthread.php?tid=295590