⚙️Configuration

The Script includes also a big language/locales configuration where you can change any text of our script! There is also a README file in the resource with some explanations for example the Tebex use.

Coinshop Config

Config = Config or {}
Config.CoinShop = {}

Config.CoinShop.Categories = {
  {
    name = "Items",
    products = {
      {
        label = "2x Apfel",
        description = "Ein Apfel",
        image = "/assets/images/apple.png",
        price = 500,
        -- Item Object Properties
        count = 2,     -- amount of items or ammoCount
        item = "bread" -- item or weapon or car
      },
      {
        label = "Pistole",
        description = "Eine Kanone",
        image = "/assets/images/WEAPON_PISTOl.png",
        price = 1000,
        -- Weapon Object Properties
        weapon = "WEAPON_PISTOL",
        ammo = 100, -- amount of ammo
      },
      {
        label = "T20",
        description = "Ein Auto",
        image = "/assets/images/car.png",
        price = 5000,
        -- Vehicle Object Properties
        vehicle = "t20",
        vehicleType = "car" -- car, boat, plane, etc.
      },
      {
        label = "20.000$",
        description = "Fetter Batzen",
        image = "/assets/images/no-image.png",
        price = 500,
        -- Cash Object Properties
        money = 20000,
        account = "money", -- bank, money, etc.
      },
    }
  }
}

Main Config

Quests Config

Scoreboard Config

Cases Config

Webhooks Config

Exports

Increase the progress of a quest (Serverside)

Last updated