Envi Scripts Documentation
  • 👋Introduction
  • 🌉Envi-Bridge
  • ⚙️Compatibility
  • 🖨️Licensing
  • 📒Premium Scripts
    • ❔FAQ / COMMON ISSUES
    • ‼️FIRST STEPS (READ FIRST)
    • ⭐Useful Resources
    • 👀Envi FiveM Showcase Server
    • 📸Envi-Camera
      • ❗First Steps
      • Inventory Setup
      • Editable Functionality
      • Complete Lens Kit
      • Printing Photos
      • Ped Reactions
      • Exports
      • Config File
    • 🪚Envi-ChopShop
      • Inventory Setup
      • How to Chop
      • Props for AntiCheats
      • Editable Functionality
      • Config File
    • 🪣Envi-Dumpsters
      • Common Issues
      • Inventory Setup
      • Editable Functionality
      • Exports
      • Exclusive Zones
      • Survival Items
      • Shopping Carts
      • Hobo Bowling
      • Hobo Taxi
      • Rats and Racoons
      • Config File
      • V2 Config
    • 💺Envi-Ejector-Seats
      • Inventory Setup
      • How to Eject
      • Editable Functionality
      • Config File
    • 🔥Envi-Flamethrower (Standalone)
      • Common Issues
      • Inventory Setup
      • Refueling
      • Editable Functionality
      • Config File
    • 🪽Envi-Flight-Suits
      • Inventory Setup
      • Flight Suits
      • Config File
    • 🍜Envi-Food-Truck
      • ❗VooDoo Required
      • Common Issues
      • Inventory Setup
      • Adding Additional Grill Items
      • Unique Shops with Liveries
      • Spawning the Trucks
      • Using the Trucks
      • Exports
      • Config File
    • 💍Envi-Forever-Rings
      • Inventory Setup
      • Editable Functionality
      • Ring Shop MLO
      • Config File
    • 💻Envi-Hack-Minigames (Standalone)
      • The Worm
      • Password
      • Firewall
      • Node Runner
      • Config File
    • 🎞️Envi-HUD
      • ❗First Time Setup
      • Common Issues
      • Inventory Setup
      • Adding Custom Weapons
      • Change Logo
      • Custom Fonts
      • Converting Notifications
      • Converting Progress Bars
      • Editable Functionality
      • Settings Save Location
      • Exports and Events
      • Commands
      • Vehicle Control
      • Anti Muscle Spasm
      • Ragdoll
      • Config File
    • 🎇Envi-Items
      • Inventory Setup
      • Config File
    • 🚑Envi-Medic
      • Common Issues
      • Fully Disable Transport to Hospital
      • Failsafe
      • Ambulance Scripts
      • Vehicle Fuel
      • Vehicle Keys
      • Exports
      • Config File
    • ☄️Envi-MethVan
      • Common Issues
      • Inventory Setup
      • Cooking Process
      • Editable Functionality
      • Adding a Vehicle
      • Config File
    • 🍃Envi-Megablower9000 (Standalone)
      • Inventory Setup
      • Config File
    • 👯Envi-Population (Standalone)
      • ❗Initial Setup
      • Common Issues
      • Config File
    • 🗒️Envi-Prescriptions
      • Common Issues
      • Inventory Setup
      • Editable Functionality
      • Config File
    • 🔧Envi-Sabotage
      • ❗First Time Setup
      • Common Issues
      • Inventory Setup
      • Exports
    • 🛒Envi-Shops
      • Common Issues
      • Inventory Setup
      • Exports
      • Editable Functionality
      • Config File
    • 📱Envi-Trap-Phone
      • Common Issues
      • Inventory Setup
      • Commands
      • Exports
      • Adding Custom Drugs
      • Using the Phone
      • Disabling Extra Services
      • Config Files
        • config.lua
        • dialogueSettings.lua
        • extraServices.lua
        • gangZoneSettings.lua
        • personalitySettings.lua
        • specialContactSettings.lua
    • 👰Envi-Weddings
      • Inventory Setup
      • Starting Info
      • Manually Removing Data
      • Commands
      • Config File
    • 🎅Envi Xmas-Weapons (Standalone)
      • Inventory Setup
      • Config File
    • 🗡️Envi-Zombie-Weapons (Standalone)
      • Inventory Setup
    • 🧟‍♂️Envi-Zombies
Powered by GitBook
On this page
  1. Premium Scripts
  2. Envi-Trap-Phone

Inventory Setup

Add to items.lua

["trap_phone"] = {
    label = 'Trap Phone',
    description = 'Trap-Line Bling...',
    weight = 100,
    stack = false,
    close = true,
},
["scales"] = {
    label = 'Scales',
    description = 'Great for weighing things',
    weight = 50,
    stack = false,
    close = true,
},
["batteries"] = {
    label = 'AAA Batteries',
    description = 'Extra long life',
    weight = 20,
    stack = true,
    close = true,
},
["baggies"] = {
    label = 'Baggies',
    description = 'Great for holding small things',
    weight = 20,
    stack = true,
    close = true,
},
["large_baggies"] = {
    label = 'Large Baggies',
    description = 'Great for holding bigger amounts of small things',
    weight = 20,
    stack = true,
    close = true,
},
['trap_phone'] = {
    name = 'trap_phone',
    label = 'Trap Phone',
    weight = 100,
    type = 'item',
    image = 'trap_phone.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Trap-Line Bling...',
},

['scales'] = {
    name = 'scales',
    label = 'Scales',
    weight = 50,
    type = 'item',
    image = 'scales.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Great for weighing things',
},

['batteries'] = {
    name = 'batteries',
    label = 'AAA Batteries',
    weight = 20,
    type = 'item',
    image = 'batteries.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Extra long life',
},

['baggies'] = {
    name = 'baggies',
    label = 'Baggies',
    weight = 20,
    type = 'item',
    image = 'baggies.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Great for holding small things',
},

['large_baggies'] = {
    name = 'large_baggies',
    label = 'Large Baggies',
    weight = 20,
    type = 'item',
    image = 'large_baggies.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Great for holding bigger amounts of small things',
},
PreviousCommon IssuesNextCommands

Last updated 21 days ago

📒
📱