Add Currencies

Add a new currencies for the AAS.formatMoney()

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

Was this helpful?