OnObjectStopMoving
From Onset Developer Wiki
Description
Event called when an object stops moving after SetObjectMoveTo.
Syntax
OnObjectStopMoving(object)
Parameters
- object
The object which finished moving.
Example
function OnObjectStopMoving(object)
print("Object "..object.." stopped")
end
AddEvent("OnObjectStopMoving", OnObjectStopMoving)