# Inventory Items

To make sure you can use the pills in your inventory,  you will find in this page the instructions for the Inventory frameworks to properly add the pills.

***

### QB Inventory

```lua
    pill_fly                     = { name = 'pill_fly', label = 'Flight Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants the ability to fly.' },
    pill_lasereyes               = { name = 'pill_lasereyes', label = 'Laser Eyes Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants the ability to shoot powerful laser beams from your eyes.' },
    pill_laservision             = { name = 'pill_laservision', label = 'Laser Vision Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants thermal vision to see through walls.' },
    pill_superstrength           = { name = 'pill_superstrength', label = 'Super Strength Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants superhuman strength for fighting.' },
    pill_superspeed              = { name = 'pill_superspeed', label = 'Super Speed Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants super speed and enhances agility.' },
    pill_invisibility            = { name = 'pill_invisibility', label = 'Invisibility Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants the power of invisibility.' },
    pill_superheal               = { name = 'pill_superheal', label = 'Super Heal Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Allows rapid healing of injuries.' },
    pill_teleport                = { name = 'pill_teleport', label = 'Teleportation Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants the ability to teleport.' },
    pill_superdurability         = { name = 'pill_superdurability', label = 'Super Durability Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants enhanced durability.' },
    pill_underwaterpower         = { name = 'pill_underwaterpower', label = 'Underwater Power Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants the ability to function underwater.' },
    pill_invincibility           = { name = 'pill_invincibility', label = 'Invincibility Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants invincibility against a chosen type of damage.' },
    pill_fire                    = { name = 'pill_fire', label = 'Fire Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants fire resistance and the ability to be on fire.' },
    pill_flame                   = { name = 'pill_flame', label = 'Flame Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants the ability to generate and throw flames.' },
    pill_energy                  = { name = 'pill_energy', label = 'Energy Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Electrifies punches with energy.' },
    pill_shockwave               = { name = 'pill_shockwave', label = 'Shockwave Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Generates shockwaves.' },
    pill_selfexplode             = { name = 'pill_selfexplode', label = 'Self Explode Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants Explosion, when combined with energy power, it becomes an EMP.' },
    pill_telekinesis             = { name = 'pill_telekinesis', label = 'Telekinesis Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants telekinetic abilities.' },
    pill_stamina                 = { name = 'pill_stamina', label = 'Stamina Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Improves super stamina  for enhanced performance.' },
    pill_temppower               = { name = 'pill_temppower', label = 'Temporary Power Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Gives a temporary power or enhances existing powers.' },
    pill_cure                    = { name = 'pill_cure', label = 'Cure Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Removes all super power, become human again.' },
    pill_shapeshift              = { name = 'pill_shapeshift', label = 'Shapeshift Pill', weight = 0, type = 'item', image = 'pill.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Grants shapeshifting powers.' },

	
```

### OX Inventory

```lua
["pill_fly"] = {
		label = "Fly Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_invincibility"] = {
		label = "Invincibility Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_invisibility"] = {
		label = "Invisibility Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_lasereyes"] = {
		label = "Laser Eyes Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_laservision"] = {
		label = "Laser Vision Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_selfexplode"] = {
		label = "Self Explode Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_shockwave"] = {
		label = "Shockwave Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_stamina"] = {
		label = "Stamina Power Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_superdurability"] = {
		label = "Super Durability Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_superheal"] = {
		label = "Super Heal Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_superspeed"] = {
		label = "Super Speed Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_superstrength"] = {
		label = "Super Strength Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_telekinesis"] = {
		label = "Telekinesis Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_teleport"] = {
		label = "Teleport Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_temppower"] = {
		label = "Temporary Power Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_underwaterpower"] = {
		label = "Underwater Power Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_cure"] = {
		label = "Cure Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_energy"] = {
		label = "Energy Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_fire"] = {
		label = "Fire Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},

	["pill_flame"] = {
		label = "Flame Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},
	["pill_shapeshift"] = {
		label = "Shapeshift Pill",
		weight = 1,
		stack = true,
		close = true,
		server = {
			export = 'enyo-superpowers.useItem',
		},
		client = {
			image = 'pill.png'
		},
	},
```

### ESX Inventory

```sql
INSERT INTO items (name, label, weight, rare, can_remove) VALUES
    ('pill_fly', 'Fly Pill', 1, 0, 1),
    ('pill_lasereyes', 'Laser Eyes Pill', 1, 0, 1),
    ('pill_laservision', 'Laser Vision Pill', 1, 0, 1),
    ('pill_superstrength', 'Super Strength Pill', 1, 0, 1),
    ('pill_superspeed', 'Super Speed Pill', 1, 0, 1),
    ('pill_invisibility', 'Invisibility Pill', 1, 0, 1),
    ('pill_superheal', 'Super Heal Pill', 1, 0, 1),
    ('pill_teleport', 'Teleport Pill', 1, 0, 1),
    ('pill_superdurability', 'Super Durability Pill', 1, 0, 1),
    ('pill_underwaterpower', 'Underwater Power Pill', 1, 0, 1),
    ('pill_invincibility', 'Invincibility Pill', 1, 0, 1),
    ('pill_fire', 'Fire Pill', 1, 0, 1),
    ('pill_flame', 'Flame Pill', 1, 0, 1),
    ('pill_energy', 'Energy Pill', 1, 0, 1),
    ('pill_shockwave', 'Shockwave Pill', 1, 0, 1),
    ('pill_selfexplode', 'Self Explode Pill', 1, 0, 1),
    ('pill_telekinesis', 'Telekinesis Pill', 1, 0, 1),
    ('pill_stamina', 'Stamina Power Pill', 1, 0, 1),
    ('pill_temppower', 'Temporary Power Pill', 1, 0, 1),
    ('pill_cure', 'Cure Pill', 1, 0, 1);
    ('pill_shapeshift', 'Shapeshift Pill', 1, 0, 1);



```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://enyo-scripts.gitbook.io/documentations/fivem-scripts/superpowers/inventory-items.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
