OnPlayerMoneyChange

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Edit-delete.png This page is marked for deletion.

Reason: This event doesn't exist as a built-in in MTA event. It exists only in the default "admin" resource
Actions: Delete (Administrators) - Discuss - What links here - Category


This event identifies changes to the player's money if it is changed on the server-side.

Parameters

int oldValue, int newValue
  • oldValue: the int amount of money before being changed.
  • newValue: the int amount of money after being changed.

Source

The source of this event is the player with which the element had its money changed.

Example

Sending a message when money is changed with the old quantity and the new quantity

function moneyChange(oldValue, newValue)
    outputChatBox("Your money changed from " .. oldValue .. " to " .. newValue, source) --Message when his money is changed
end
addEventHandler("onPlayerMoneyChange", getRootElement(), moneyChange) 


See Also

Money events

Edit-delete.png This page is marked for deletion.

Reason: Useless template. See onPlayerMoneyChange
Actions: Delete (Administrators) - Discuss - What links here - Category

Event functions