In one room I have an object which, when a particular inventory item is used on it, should move.
I'm using the command:
MoveObject(3, 9, 40, 5);
for this, but nothing seems to happen. The object is not "locked in this position" either.
Confused. ???
Try:
MoveObjectDirect(3, 9, 40, 5);
that usually does it
You're right!
Cheers! ;D