OnClientObjectMoveStart

From Multi Theft Auto: Wiki
Revision as of 11:15, 20 September 2021 by Lvrent (talk | contribs)
Jump to navigation Jump to search

20811

Parameters

None.

Source

The source of this event is the object which was moved.

Example

local obj = createObject (5239, -2417.22339, -606.70374, 132.56250)
moveObject (obj, 3000, -2417.22339, -606.70374, 137.56250)

addEventHandler ("onClientObjectMoveStart", obj,
    function ()
        outputChatBox ("Object started moving!")
    end
)

Requirements

This template will be deleted.

See Also

Client object events


Client event functions