OnAccountDataChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server event}}
{{Server event}}
This event is triggered when an accounts data changes through [[setAccountData]]
This event is triggered when an accounts data changes through [[setAccountData]].


==Parameters==
==Parameters==
Line 8: Line 8:
</syntaxhighlight>
</syntaxhighlight>


*'''theAccount''': The account getting its data changed
*'''theAccount''': The account getting its data changed.
*'''theKey''': The key that is being changed
*'''theKey''': The key that is being changed.
*'''theValue''': The value it is changing to
*'''theValue''': The value it is changing to.


==Source==
==Source==

Revision as of 21:17, 2 April 2018

This event is triggered when an accounts data changes through setAccountData.

Parameters

account theAccount, string theKey, string theValue
  • theAccount: The account getting its data changed.
  • theKey: The key that is being changed.
  • theValue: The value it is changing to.

Source

The source of this event is the root element.

Example

This examples prevents the key of "level" being added or changed on every account

function preventLevelChange(account, key, value)
    if (key == "level") then
        cancelEvent()
    end
end
addEventHandler("onAccountDataChange", root, preventLevelChange)

This examples logs every single account data change to server log

function preventLevelChange(account, key, value)
    if (wasEventCancelled()) then return end -- If the data change was aborted don't log it.
    outputServerLog(getAccountName(account).." key: "..key.." changed to: "..tostring(value))
end
addEventHandler("onAccountDataChange", root, preventLevelChange)

See Also

Server events


Event functions