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-adv-modern-repairkit

Configuration

Repair parts config

Config.RepairParts = {
	[1] = {
		part = "engine",
		duration = 15,
		requiredItems = {
			{ label = "Engine", item = "engine", requiredCount = 1 },
			{ label = "Spark Plug", item = "sparkplug", requiredCount = 5 },
		},
	},
	[2] = {
		part = "tires",
		duration = 20,
		requiredItems = {
			{ label = "Tyer", item = "tyer", requiredCount = 1 },
			{ label = "Strips", item = "strips", requiredCount = 4 },
			{ label = "Glue", item = "glue", requiredCount = 5 },
			{ label = "Cutter", item = "cutter", requiredCount = 4 },
		},
	},
	[3] = {
		part = "body",
		duration = 10,
		requiredItems = {
			{ label = "steel", item = "steel", requiredCount = 1 },
			{ label = "Iron", item = "iron", requiredCount = 4 },
			{ label = "Screw", item = "screw", requiredCount = 5 },
			{ label = "Wrench", item = "wrench", requiredCount = 1 },
			{ label = "Drill", item = "drill", requiredCount = 4 },
		},
	},

	[4] = {
		part = "vehicle_dirt",
		duration = 30,
		requiredItems = {
			{ label = "Fuel", item = "fuel", requiredCount = 4 },
			{ label = "Water", item = "water", requiredCount = 4 },
		},
	},
}
PreviousInstallationNextg-pausemenu-simplified

Last updated 1 month ago

🔧
⚙️