# The Cashier

At the Casino Cashier, players can either purchase chips using money or trade in their existing chips for cash.

**Events that are being used for the Cashier** (located in /server/main/casino.lua)

> Casino:AcquireChips
>
> Casino:TradeInChips
>
> Casino:DailyBonus

### Anti-Spam

To prevent abuse and unauthorized actions, there is a default rate limit set for the cashier events, which allows only one event per second. If a player exceeds this limit and triggers these events more frequently, a warning message is displayed in the server console. This alert informs the server admins that there may be suspicious activity where the player is attempting to exploit the system and acquire chips without proper means. As a security measure, an antispam mechanism is activated, triggering the server event "Casino:Anticheat:Ban" along with the player's ID. You can modify this behavior in:

> **/server/main/casino.lua**
>
> LimitCashierRate(playerId)

### Daily Bonus

By default, players can receive a daily bonus of 1000 chips at the Cashier. This feature is enabled by default and can be adjusted in the config.lua file, under the "CASHIER\_DAILY\_BONUS" option. If you wish to disable the daily bonus, simply set "CASHIER\_DAILY\_BONUS = 0" in the configuration.

### VIP Membership

Players have the option to purchase a VIP membership, which grants them exclusive access to VIP areas and the ability to participate in high-stakes games at the Casino. The price and the duration of the membership can be configured in config.lua, options:

> CASHIER\_VIP\_PRICE
>
> CASHIER\_VIP\_DURATION


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.rcore.cz/paid-resources/rcore_casino/the-cashier.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
