Groot Development
Store
  • 👋Welcome
  • Coding Information
    • Register Key Mapping
  • ASSETS
    • 🕙g-duty
      • Why?
      • Installation
      • Config.lua
    • 📋g-scoreboard-V1
      • Installation
      • Config.lua
    • 📋g-scoreboardV2
      • Installation
      • Config.lua
      • Exports & Events
    • 🎁g-giftcard
      • Installation
      • Config.lua
      • Export
    • 🏡g-job-vehicle-shop
      • Installation
      • ⚙️Configuration
        • Exports
        • Create Vehicle Management Panel
        • Create Vehicle Shops
    • 💯g-redeem-code
      • 🗒️Features
      • Installation
      • ⛔Note
      • ⚙️Configuration
        • Create New item
    • 📖g-pausemenu
      • 🗒️Features
      • Installation
      • ⚙️Features Guide
        • Info Buttons
        • socials Buttons
        • Rules
        • Organization Avatar
    • 🛠️g-crafting
      • 🗒️Features
      • 📦Patch Details
      • Installation
      • ❔Why
      • ⚔️Exports
      • Configuration
        • How to Create New Station
        • How to Create crafting time for an item.
    • 🛒g-shopsV2
      • 🗒️Features
      • 📦Patch Details
      • Installation
      • ⚔️Exports
      • Configuration
        • How to Create New Shop
        • How to create new item
    • 🔧g-adv-modern-repairkit
      • 🗒️Features
      • 📦Patch Details
      • Installation
      • ⚙️Configuration
  • 📖g-pausemenu-simplified
    • 📦Patch Details
    • Installation
    • ❔Why
    • Configuration
      • Git Dev Patchs
  • FREE RELEASE
    • 🎁g-starterpack-gift
      • Installation
      • Config.lua
    • 👨‍🔬g-employee-chat-list
      • Installation
    • g-notifications
      • Installation
      • Notification
      • Framework Integration
      • Remove Notification By ID
Powered by GitBook
On this page
  1. ASSETS
  2. g-redeem-code

Configuration

Item Config


Config.Items = {
    [1] = {
        name = "burger",
        label = 'burger',
        image = 'burger.png',
        type = 'item' -- do not change this
    },
    [2] = {
        name = "water",
        label = 'water',
        image = 'water.png',
        type = 'item'
    },
    [3] = {
        name = "kuruma",
        label = 'kuruma',
        image = 'kuruma.png',
        type = 'vehicle'
    },
    [4] = {
        name = "sultan",
        label = 'Sultan',
        image = 'sultan.png',
        type = 'vehicle'
    },
    [5] = {
        name = 'weapon_knife',
        label = 'knife',
        image = 'knife.png',
        type = 'weapon'
    },
    [6] = {
        name = 'weapon_pistol',
        label = 'pistol',
        image = 'pistol.png',
        type = 'weapon'
    }

}

PreviousNoteNextCreate New item

Last updated 9 months ago

💯
⚙️