Config
```lua
Config = {}
Config.Framework = "newqb" -- newqb / oldqb | newqb = export system | oldqb = triggerevent system
Config.ServerWait = 5 * 60 * 1000 -- 5 minutes data update
Config.ClientWait = 6 * 60 * 1000 -- 6 minutes data update
Config.MaxPlayerCount = 200
Config.DiscordLink = "https://discord.gg/p4z492X6xT"
Config.YoutubeLink = "https://www.youtube.com/@dockerize"
Config.NotifyFunction = function(msg, type)
QBCore.Functions.Notify(msg, type)
end
Config.OpenInventoryFunction = function()
ExecuteCommand("inventory")
end
Config.Announcements = {
{
title = "Digital Dragons Indie Celebration",
description = "The Digital Dragons Indie celebration is now live on Steam, with dozens of demos, live-streams, and a collection of games, hand-picked by the Digital Dragons jury and available on Steam.",
date = "04.07.2024",
},
{
title = "Digital Dragons Indie Celebration",
description = "The Digital Dragons Indie celebration is now live on Steam, with dozens of demos, live-streams, and a collection of games, hand-picked by the Digital Dragons jury and available on Steam.",
date = "04.07.2024",
},
{
title = "Digital Dragons Indie Celebration",
description = "The Digital Dragons Indie celebration is now live on Steam, with dozens of demos, live-streams, and a collection of games, hand-picked by the Digital Dragons jury and available on Steam.",
date = "04.07.2024",
},
}
Config.MiniGames = {
{
title = "HEXTRIS",
link = "https://hextris.io/",
},
{
title = "TOWER BUILDING",
link = "https://riseuplabs.com/play/tower-building/",
},
{
title = "HEXTRIS",
link = "https://hextris.io/",
},
{
title = "HEXTRIS",
link = "https://hextris.io/",
},
}
Config.Translate = {
money = "MONEY",
job = "JOB",
yourPlayTime = "YOUR PLAY TIME",
onlinePlayers = "ONLINE PLAYERS",
quitGame = "QUIT GAME",
resume = "RESUME",
announcements = "ANNOUNCEMENTS",
map = "MAPS",
mapDesc = "Here you can find all <br /> project location marks.",
inventory = "INVENTORY",
inventoryDesc = "Here you can find all <br /> project location marks.",
settings = "SETTINGS",
settingsDesc = "Here you can find all <br /> project location marks.",
miniGames = "MINI GAMES",
miniGamesDesc = "Enjoy legendary games and experience nostalgia.",
play = "PLAY",
joinToCommunity = "JOIN TO COMMUNITY",
discordJoin = "DISCORD <br /> JOIN",
youtubeJoin = "YOUTUBE <br /> JOIN"
}
```
```lua
Config = {}
Config.Framework = "newEsx" -- esx / newEsx | esx = triggerevent system | newEsx = export system
Config.ServerWait = 5 * 60 * 1000 -- 5 minutes data update
Config.ClientWait = 6 * 60 * 1000 -- 6 minutes data update
Config.MaxPlayerCount = 200
Config.DiscordLink = "https://discord.gg/p4z492X6xT"
Config.YoutubeLink = "https://www.youtube.com/@dockerize"
Config.NotifyFunction = function(msg, type)
ESX.ShowNotification(msg)
end
Config.OpenInventoryFunction = function()
ESX.ShowInventory()
end
Config.Announcements = {
{
title = "Digital Dragons Indie Celebration",
description = "The Digital Dragons Indie celebration is now live on Steam, with dozens of demos, live-streams, and a collection of games, hand-picked by the Digital Dragons jury and available on Steam.",
date = "04.07.2024",
},
{
title = "Digital Dragons Indie Celebration",
description = "The Digital Dragons Indie celebration is now live on Steam, with dozens of demos, live-streams, and a collection of games, hand-picked by the Digital Dragons jury and available on Steam.",
date = "04.07.2024",
},
{
title = "Digital Dragons Indie Celebration",
description = "The Digital Dragons Indie celebration is now live on Steam, with dozens of demos, live-streams, and a collection of games, hand-picked by the Digital Dragons jury and available on Steam.",
date = "04.07.2024",
},
}
Config.MiniGames = {
{
title = "HEXTRIS",
link = "https://hextris.io/",
},
{
title = "TOWER BUILDING",
link = "https://riseuplabs.com/play/tower-building/",
},
{
title = "HEXTRIS",
link = "https://hextris.io/",
},
{
title = "HEXTRIS",
link = "https://hextris.io/",
},
}
Config.Translate = {
money = "MONEY",
job = "JOB",
yourPlayTime = "YOUR PLAY TIME",
onlinePlayers = "ONLINE PLAYERS",
quitGame = "QUIT GAME",
resume = "RESUME",
announcements = "ANNOUNCEMENTS",
map = "MAPS",
mapDesc = "Here you can find all <br /> project location marks.",
inventory = "INVENTORY",
inventoryDesc = "Here you can find all <br /> project location marks.",
settings = "SETTINGS",
settingsDesc = "Here you can find all <br /> project location marks.",
miniGames = "MINI GAMES",
miniGamesDesc = "Enjoy legendary games and experience nostalgia.",
play = "PLAY",
joinToCommunity = "JOIN TO COMMUNITY",
discordJoin = "DISCORD <br /> JOIN",
youtubeJoin = "YOUTUBE <br /> JOIN"
}
```
Last updated