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 3 years ago
Was this helpful?