> For the complete documentation index, see [llms.txt](https://kobralost.gitbook.io/advanced-accessory-system/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kobralost.gitbook.io/advanced-accessory-system/tutorials/add-currencies.md).

# Add Currencies

Add a new currencies for the AAS.formatMoney()

{% hint style="info" %}
For add a currency you have to go into the **sh\_config.lua**
{% endhint %}

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