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. FREE RELEASE
  2. g-starterpack-gift

Installation

Add the following lines to your es_extended -> config.lua Replace with Config.StartingInventoryItems = false

Config.StartingInventoryItems = {
	starter_pack = 1,
}

If ox_inventory add this item to your ox_inventory -> data -> items.lua


["starter_pack"] = {
		label = "Starter Pack",
		weight = 3,
		stack = true,
		close = false,
		description = "Starter Pack",
		client = {
			image = "starter_pack.png",
		}
},

Add this line to qb-core -> shared -> main.lua

QBShared.StarterItems = {
    ['starter_pack'] = { amount = 1, item = 'starter_pack' },
}

Add this item to qb-core -> shared -> items.lua

starter_pack= { name = 'starter_pack', label = 'Starter pack', weight = 300, type = 'item', image = 'starter_pack.png', unique = true, useable = true, shouldClose = false, description = "starter pack item" },

Previousg-starterpack-giftNextConfig.lua

Last updated 10 months ago

🎁