# Christmas Decorations

### Adding a Christmas Tree

To add a christmas tree in casino, open file **/rcore\_casino/xmas/xmas\_sv.lua**, and add this piece of code for spawning a christmas tree:

```lua
table.insert(XMAS_TREES, {
    map = 1, -- the map it should be for
    position = vector3(944.8862, 48.21997, 79.9), -- position of the tree
    heading = 40.0, -- heading of the tree
    rewardMin = 100, -- min. amount
    rewardMax = 1000, -- max amount
    rewardChooseFrom = {"casino_chips", "casino_beer"}, -- choose reward randomly from these inventory items
    cooldown = (60 * 60 * 24) -- 24 hours cooldown
})
```

{% hint style="info" %}
Remember to set option **Xmas = true** in config.lua in order to see christmas trees
{% endhint %}
