Inventory Setup

Add to items.lua

Weapons do not get added to items.lua for ox_inventory


Add to weapons.lua

    ['WEAPON_NAILGUN'] = {
        label = 'Zombie Nailgun',
        weight = 1000,
        ammoname = 'ammo-shotgun'
    },

    ['WEAPON_ZBARBEDBAT'] = {
        label = 'Zombie Barb Bat',
        weight = 1000,
    },

    ['WEAPON_ZCLEVER'] = {
        label = 'Zombie Clever',
        weight = 1000,
    },

    ['WEAPON_ZKITCHEN'] = {
        label = 'Zombie Kitchen Knife',
        weight = 1000,
    },

    ['WEAPON_ZSNIPER'] = {
        label = 'Zombie Sniper',
        weight = 1000,
        ammoname = 'ammo-sniper'
    },

    ['WEAPON_ZOMBIE_BAT'] = {
        label = 'Zombie Bat',
        weight = 1000,
    },

    ['WEAPON_ZOMBIE_BATTLEAXE'] = {
        label = 'Zombie Battleaxe',
        weight = 1000,
    },

    ['WEAPON_ZOMBIE_BLADE'] = {
        label = 'Zombie Blade',
        weight = 1000,
    },

    ['WEAPON_ZOMBIE_CROWBAR'] = {
        label = 'Zombie Crowbar',
        weight = 1000,
    },

    ['WEAPON_ZOMBIE_HAMMER'] = {
        label = 'Zombie Hammer',
        weight = 1000,
    },

    ['WEAPON_ZOMBIE_KATANA'] = {
        label = 'Zombie Katana',
        weight = 1000,
    },

    ['WEAPON_ZOMBIE_SICKLE'] = {
        label = 'Zombie Sickle',
        weight = 1000,
    },

    ['WEAPON_ZOMBIE_SNS'] = {
        label = 'Zombie SNS Pistol',
        weight = 1000,
        ammoname = 'ammo-pistol'
    },

    ['WEAPON_ZOMBIEKNIFE'] = {
        label = 'Zombie Knife',
        weight = 1000,
    },

    ['WEAPON_ZPLANK'] = {
        label = 'Zombie Plank',
        weight = 1000,
    },

    ['WEAPON_ZSPIKEDBAT'] = {
        label = 'Zombie Spiked Bat',
        weight = 1000,
    },

    ['WEAPON_ZTACKNIFE'] = {
        label = 'Zombie Tac Knife',
        weight = 1000,
    },

Last updated