Copy Config = {}
Config.ServerName = "GFX Server" -- Displayed in the UI
Config.Framework = "vorp" -- "vorp", "rsg", "RedEM", "qbr"
Config.SQLScript = "oxmysql" -- "oxmysql", "ghmattimysql", "mysql-async"
Config.ServerLogo = "https://example.com/logo.png"
Config.Kits = {
starter = {
name = "Starter Kit",
description = "Basic supplies for new arrivals",
duration = 6, -- Cooldown in hours
image = "assets/starter-icon.png",
items = {
{ name = "bread", count = 5 },
{ name = "revolver_ammo", count = 20 },
{ name = "pistol_ammo", count = 20 }
},
playerCanInteract = function(source)
return true -- Everyone can claim
end
},
weekly = {
name = "Weekly Kit",
description = "Weekly supply package",
duration = 168, -- 7 days in hours
image = "assets/weekly-icon.png",
items = {
{ name = "handcuffs", count = 1 },
{ name = "repair_kit", count = 2 },
{ name = "canteen", count = 1 }
},
playerCanInteract = function(source)
return true
end
},
discord = {
name = "Discord Kit",
description = "Exclusive kit for Discord members",
duration = 6,
image = "assets/discord-icon.png",
items = {
{ name = "gold_bar", count = 1 }
},
playerCanInteract = function(source)
return HasPlayerHasRoleOnDiscord(source, "YOUR_ROLE_ID")
end
}
}