Lua Events/OnObjectRightMouseButtonUp

From PZwiki



Event

OnObjectRightMouseButtonUp

Description

Triggered when right mouse button is released on object

Parameters

  • IsoObject The object on which the right mouse button was released.
  • Integer The x coordinate where the right mouse button was released.
  • Integer The x coordinate where the right mouse button was released.

Examples

local function OnObjectRightMouseButtonUp(object, x, y)
	-- Your code here
end

Events.OnObjectRightMouseButtonUp.Add(OnObjectRightMouseButtonUp)

See also