CoinsEngine
Compatibility with CoinsEngine
Conditions
Section titled “Conditions”CoinsEngine Coin Condition: coins
Checks if the player has the specified amount of coins.
# coins currencyId operator amount
conditions: hasCoins: coins == coins 100
CoinsEngine Coin Event: coins
Adds, removes, multiplies, or sets the number of coins in the player’s account.
Parameter | Syntax | Default | Explanation |
---|---|---|---|
amount | Number | The amount of money to add or remove. Use * to multiply. | |
notify | Keyword: notify | Disabled | Display a message to the player when their balance is changed. |
# coins -currencyId amount notify
events: add_coins: coins coins +1000 take_coins: coins coins -1000 multiply_coins: coins coins *2 notify set_coins: coins coins 10000 notify