Files
Elite-Gaming-FiveM/resources/beanbagshotgun/README.md
T
KingMcDonalds 3a9c4ba58a fixing cars
2024-12-08 01:41:39 -08:00

1.0 KiB

install instructions for QBCore

qb-core/shared/weapons.lua

[weapon_beanbag] = { name = 'weapon_beanbag', label = 'Bean Bag Shotgun', weapontype = 'Weapon', ammotype = 'AMMO_BEANBAG', damagereason = 'Hurt by a beanbag from a non-lethal shotgun' },

qb-core/shared/items.lua

weapon_beanbag = { name = 'weapon_beanbag', label = 'Bean Bag Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_BEANBAG', image = 'weapon_beanbag', unique = true, useable = true, description = 'Bean Bag' },

qb-weapons/server/main.lua > local AmmoTypes add this following, make sure you haven't missed your comma's

beanbag_ammo = { ammoType = 'AMMO_BEANBAG', amount = 1 }

install instructions for ox_inventory

add to ox_inventory/data/weapons.lua > Weapons Table

['WEAPON_BEANBAG'] = { label = 'Bean Bag Shotgun', weight = 1400, durability = 0.1, ammoname = 'ammo-beanbag', },

add to ox_inventory/data/weapons.lua > Ammo Table

['ammo-beanbag'] = { label = 'Bean Bag', weight = 20, },