No Description

Giov4 a3b5cb2646 Simplified add and sub functions 3 years ago
LICENSE 7bc06257fd Add LICENSE 3 years ago
README.md 56d8543bcf Update README.md 3 years ago
api.lua a3b5cb2646 Simplified add and sub functions 3 years ago
chatcmdbuilder.lua 68849d5690 + balance: min and max values + togglable negative ones when registering a currency 3 years ago
commands.lua 68849d5690 + balance: min and max values + togglable negative ones when registering a currency 3 years ago
init.lua 68849d5690 + balance: min and max values + togglable negative ones when registering a currency 3 years ago
mod.conf 42a0efff18 Initial commit 3 years ago
utils.lua 68849d5690 + balance: min and max values + togglable negative ones when registering a currency 3 years ago

README.md

API


currencies.register(currency, def)

Use this to register a currency, it is necessary to use every other function. def is a table containing the following values (it isn't demanded):

--[[
{
    min_value : number =
        the smallest balance that a player can have.

    max_value : number =
        the biggest balance that a player can have.
    
    negative_balance : bool =
        if the balance can be less than 0.
}
]]

currencies.get(currency, pl_name)

Use this to get a player's balance.


currencies.set(currency, pl_name, value)

Use this to set a player's balance.


currencies.add(currency, pl_name, value)

Use this to increase a player's balance.


currencies.sub(currency, pl_name, value)

Use this to decrease a player's balance.


currencies.transfer(currency, from_pl_name, to_pl_name, amount)

Use this to subtract amount money from_pl_name and add them to to_pl_name.


currencies.exchange(currency, from_pl_name, from_amount, to_pl_name, to_amount)

Use this to subtract from_amount from from_pl_name and add to_amount to to_pl_name.


currencies.exists(currency)

Use this to check if a currency has been registered.





Example

currencies.register("skywars_money", {min_value = 250})

currencies.add("skywars_money", "Giov4", 300)
currencies.sub("skywars_money", "Giov4", 100)

local balance = currencies.get("skywars_money", "Giov4")
print(balance)  -- output: 250