This Lua script implements a customizable lottery system for AzerothCore and TrinityCore servers. Players can enter the lottery using Emblems of Frost, with a chance to win various prizes. The script features automated prize draws and an intuitive NPC interface for player interaction.
- Customizable Entry Cost: Players can enter the lottery by spending Emblems of Frost.
- Automated Prize Draws: The script automatically selects winners at predefined intervals.
- Flexible Prize System: Customize the prizes and their chances of being won.
- NPC Interface: Provides an easy-to-use menu for players to interact with the lottery system.
- Detailed Instructions: Includes comprehensive instructions for installation, configuration, and customization.
-
Place the
lottery.lua
file in your server'slua_scripts
directory. -
Modify the following variables at the top of the script to fit your server's settings:
LOTTERY_COST
: Cost for players to enter the lottery (in Emblems of Frost).COOLDOWN_TIME
: Time interval between consecutive entries (in seconds).PRIZES
: Customize the list of prizes, each with an ID, name, and chance of winning.
-
Restart your server or reload Lua scripts for changes to take effect.
Players interact with the lottery system through a designated NPC. The NPC provides the following options:
- Enter the lottery
- View prizes and their chances
- Close interaction
The system automatically manages cooldowns and prize distributions.
Easily customize the script by adjusting the following variables:
- LOTTERY_COST: Modify the entry cost using Emblems of Frost.
- COOLDOWN_TIME: Adjust the cooldown period between entries.
- PRIZES: Edit the prize list by adding, removing, or modifying entries as needed.
Modify the PRIZES
table in the script to adjust prizes, each defined with an ID, name, and chance of being won:
local PRIZES = {
{id = 12345, name = "Custom Item 1", chance = 10},
{id = 67890, name = "Custom Item 2", chance = 5},
-- Add or remove prizes as necessary
}
Video