Configuration
2️⃣ Configuration
🛠️ General Settings
// ```lua
-- "Determine which framework to use ("qb" or "esx")
Config.Framework = "qb"
Config.InteractText = "~g~[E]~w~ Shop" -- Text on the ped
Config.PaymentMethod = "both" -- "cash, bank, or both ?"
Config.MarketKey = "E" --E - C - F - G - H - K - J - L : Market Open Key
Config.Language = "en" -- Default Lang: "tr", "en"
```🎁 Items Settings
//
```lua
Config.Items = {
{ label = "Water", item = "water_bottle", price = 5, image = "water.png" },
{ label = "Burger", item = "burger", price = 10, image = "sandwich.png" },
{ label = "Bandage", item = "bandage", price = 7, image = "bandage.png" },
{ label = "Phone", item = "phone", price = 8, image = "phone.png" }
}
```🌍 Language (Locales)
Last updated