Originally Posted by sciman001
I am having some issues moving my dynamic objects.. here it is:
pawn Код:
VIPDOOR[0] = CreateDynamicObject(5422, -1333.45, 487.41, 12.12, 0.00, 0.00, 90.00, -1, -1, -1, 200); VIPDOOR[1] = CreateDynamicObject(5422, -1337.61, 487.41, 12.12, 0.00, 0.00, 90.00, -1, -1, -1, 200);
when i do this:
pawn Код:
MoveDynamicObject(VIPDOOR[0], -1333.45, 487.41, 7.12, 5); MoveDynamicObject(VIPDOOR[1], -1337.61, 487.41, 7.12, 5);
and this:
pawn Код:
MoveDynamicObject(VIPDOOR[0], -1333.45, 487.41, 12.12, 5); MoveDynamicObject(VIPDOOR[1], -1337.61, 487.41, 12.12, 5);
It rotates them an extra 90 degrees. SO, instead of beign at 90 degrees, they're at 180 or 0.. so, How can i fix this?
|