Configuration
You can customize the whole script according to your needs. If you can not adjust something or there are errors, feel free to contact us on our Discord server.
Last updated
You can customize the whole script according to your needs. If you can not adjust something or there are errors, feel free to contact us on our Discord server.
Last updated
Config = {}
Config.Symbols = { -- Easy to add more Symbols
"🍒",
"⭐",
"🎁",
"🔥",
"💎",
"🍉",
"🌍",
"🔎"
}
Config.PossibleAmounts = {200, 500, 1000, 2000, 5000, 10000} -- You can add more Possible Amounts
Config.EnableWeightedAmounts = true -- if true then you can change how often an Amount is getting used, if false it is 100% random
Config.AmountChances = {
{amount = 200, chance = 50},
{amount = 500, chance = 30},
{amount = 1000, chance = 10},
{amount = 2000, chance = 5},
{amount = 5000, chance = 3},
{amount = 10000, chance = 2}
}
Config.ItemName = "scratchcard" -- Item Name
-- Notifications
Config.NotificationScript = "OX" -- "ESX", "OX" or "Custom"
Config.LoseMessage = "Unfortunately, you lost! Try again."
Config.WinMessage = "You won: $%s"
Config.FinishButtonText = "Done"