Add Currencies
Add a new currencies for the AAS.formatMoney()
--[[ 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?