# Server

## Exports

### Get Account Money

Gets the account balance/money from a given shop.

```lua
exports['t1ger_tuningsystem']:GetAccountMoney(shopId)
-- shopId(INT): tuner shop id
```

### Add Account Money

Adds x money to the given account.

```lua
exports['t1ger_tuningsystem']:AddAccountMoney(shopId, amount)
-- shopId(INT): tuner shop id
-- amount(INT): amount of money to add to the account
```

### Remove Account Money

Removes x money from the given account.&#x20;

```lua
exports['t1ger_tuningsystem']:RemoveAccountMoney(shopId, amount)
-- shopId(INT): tuner shop id
-- amount(INT): amount of money to remove from the account
```

### Set Account Money

Sets the account balance of the given account to x.

```lua
exports['t1ger_tuningsystem']:SetAccountMoney(shopId, amount)
-- shopId(INT): tuner shop id
-- amount(INT): amount of money to set the new account balance to.
```

## Events
