Add Currencies

Add a new currencies for the AAS.formatMoney()

circle-info

For add a currency you have to go into the sh_config.lua

--[[ You can add more currency here ]]
AAS.Currencies = {
    ["$"] = function(money)
        return "$"..money
    end,
    [""] = function(money)
        return money..""
    end
    --["%"] = function(money)
        --return money.."%"
    --end
}

Last updated