Server-side event

onPlayerChangesProtectedData

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

BETA: NEW FEATURE (BUILD: 1.6.0 r22790)
This event is triggered when a player tries to change protected element data. The server protects element data with using elementdata_whitelisted from mtaserver.conf and the clientChangesPolicy parameter in setElementData.

Parameters

  • element: The affected element.
  • key: The name of the element data entry that has changed.
  • value: The value that the player sends.

Source

The source of this event is the player who changes protected element data.

Example

This example will disconnect the suspected player from the server and display a warning about the teleport.

addEventHandler("onPlayerTeleport", root, function()
    kickPlayer(source, "AC", "You were disconnected from the server for attempting to teleport. If this was a mistake, please contact the administration.")
end)

See Also

Player events


Event functions