OnPlayerClick

From Multi Theft Auto: Wiki
Revision as of 17:47, 12 January 2008 by D0c (talk | contribs) (See Also for server events)
Jump to navigation Jump to search

This event is triggered when a player clicks using the mouse cursor.

Parameters

string mouseButton, string buttonState, element clickedElement, float worldPosX, float worldPosY, float worldPosZ, float screenPosX, float screenPosY
  • mouseButton: A string representing the mousebutton that was pressed. Value can be left, middle or right.
  • buttonState: A string representing the button state. Value can be up or down.
  • clickedElement: The element the player clicked on. This value is nil if none.
  • worldPosX: The X position in the world the player clicked on
  • worldPosY: The Y position in the world the player clicked on
  • worldPosZ: The Z position in the world the player clicked on
  • screenPosX: The X position on the screen the player clicked on
  • screenPosY: The Y position on the screen the player clicked on

Source

The source of this event is the player that clicked.

Example

This example does...

--This line does...
blah()
--This line does this...
mooo

See Also

Player events


Event functions