Roulette Configuration
To configure the roulette wheel, go to the Setting.lua file
Config.Roulette = {
enable = true, -- Enable or disable the use of the roulette wheel. If this option is disabled, you must enable Config.ServerRules to display your server rules
price = 0, -- Price to spin the daily roulette wheel
cooldown = 86400,
items = { -- Here you will find the items that the roulette wheel gives away; if you want more information about this, refer to the documentation
{
id = "20_coins",
label = "20 Coins",
image = "coins.png",
type = 'coins',
ammount = 20,
},
{
id = "money_50k",
label = "50 K Cash",
image = "money.png",
type = 'money',
ammount = 20,
},
{
id = "pistol_1",
label = "X1 Pistol",
image = "pistol.png",
type = 'weapon_pistol',
ammount = 1,
},
{
id = "armour_1",
label = "Armour",
image = "armour.png",
type = 'armour',
ammount = 1,
},
{
id = "10_coins",
label = "10 Coins",
image = "coins.png",
type = 'coins',
ammount = 10,
},
{
id = "casino_chips_50",
label = "50 Casino Chips",
image = "casino_chips.png",
type = 'casino_chips',
ammount = 50,
},
{
id = "laptop_1",
label = "Laptop",
image = "laptop.png",
type = 'laptop',
ammount = 1,
},
{
id = "smg_1",
label = "X1 SMG",
image = "smg.png",
type = 'weapon_smg',
ammount = 1,
}
}
}How do I add a new item? Well, we'll give you an example:
type
Description
How can I add images to the roulette wheel?

Last updated