For the complete documentation index, see llms.txt. This page is also available as Markdown.

Ox Inventory

Only refer to this page if you are using ox inventory as your inventory resource. If you are using any other inventory refer to those sub-pages. If you notice any errors here, open a ticket.

  • Insert the weapons into your weapons.lua

-- vanishdev's Female Weapons V1
['WEAPON_FDESERTEAGLE'] = {
	label = 'Female Desert Eagle',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-9',
},
['WEAPON_FDRACOSMG'] = {
	label = 'Female Draco',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-rifle2',
},
['WEAPON_FFNFAL'] = {
	label = 'Female FNFAL',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-rifle2',
},
['WEAPON_FGLOCK18'] = {
	label = 'Female Glock 18',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-9',
},
['WEAPON_FKELTEC'] = {
	label = 'Female Keltec',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-9',
},
['WEAPON_FKELTECSUB'] = {
	label = 'Female Keltec Sub',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-9',
},
['WEAPON_FMLOK'] = {
	label = 'Female M-LOK',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-rifle',
},
['WEAPON_FNIGHTMARE'] = {
	label = 'Female Nightmare',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-rifle',
},
['WEAPON_FUSP'] = {
	label = 'Female USP',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-9',
},
['WEAPON_FUZI'] = {
	label = 'Female UZI',
	weight = 4500,
	durability = 0.6,
	ammoname = 'ammo-9',
},
  • Insert/Replace this next snippet at the bottom of the weapons.lua file in order for attachments to work, if you don't want this, just skep this step

Last updated