# Events

All events are configurable in shared/config.lua

### 🌠 Meteor Event

When active, rare ore drop chances increase significantly.

Config.Events.meteor = { enabled = true, interval = 3600000, -- triggers every 1 hour duration = 600000, -- lasts 10 minutes rarityBoost = 200, -- 200% increase in rare drops }

Admin Commands: /startmeteor - Start manually /stopmeteor - Stop manually

### ⚡ Happy Hour

Double ore drops during specified hours.

Config.Events.happyHour = { enabled = true, startHour = 20, -- starts at 20:00 endHour = 22, -- ends at 22:00 oreMultiplier = 2.0, -- 2x ore drops }

Admin Commands: /starthappyhour - Start manually /stophappyhour - Stop manually

### 🎉 Weekend Bonus

Extra XP and ore on weekends.

Config.Events.weekend = { enabled = true, days = {1, 7}, -- 1=Sunday, 7=Saturday xpMultiplier = 1.5, -- 50% more XP oreMultiplier = 1.25, -- 25% more ore }

This event activates automatically on configured days.

### 🎁 Treasure Chest

A random treasure chest spawns in a mining area. First player to find and open it gets the reward.

Config.Events.treasure = { enabled = true, interval = 1800000, -- spawns every 30 minutes duration = 600000, -- stays for 10 minutes rewards = { {item = 'diamond', amount = 1, chance = 30}, {item = 'emerald', amount = 1, chance = 20}, {item = 'gold\_ore', amount = 5, chance = 50}, }, }

Admin Commands: /starttreasure - Spawn manually /stoptreasure - Remove manually

### 📊 Check Event Status

/miningevents - Shows which events are active


---

# 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://elena-scripts.gitbook.io/elenascripts/jobs-and-activities/mining-job/events.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.
