💻Installation

Dependencies

ES EXTENDED

You will need the latest version of es_extended.

  • Extract the contents of the archive to your resources folder.

  • Start the resource near the top of your resources in your server.cfg.

POLYZONE

You will need the latest version of polyzone.

  • Extract the contents of the archive to your resources folder.

  • Start the resource near the top of your resources in your server.cfg.

Installing the resource

  • Make sure you have the dependencies listed above installed.

  • Extract the contents of the archive to your resources folder.

  • Add items to ox_inventory/data/items.lua

    ["zatecola"] = {
    	label = "eCola",
    	weight = 1,
    	stack = false,
    	close = true,
    	description = "eCola Drinks..",
    	client = {
    		image = "zatecola.png",
    	}
    },
    
    ["zatfries"] = {
    	label = "Fries",
    	weight = 1,
    	stack = false,
    	close = true,
    	description = "French Fries...",
    	client = {
    		image = "zatfries.png",
    	}
    },
    
    ["zatburger"] = {
    	label = "Burger",
    	weight = 1,
    	stack = false,
    	close = true,
    	description = "Burger..",
    	client = {
    		image = "zatburger.png",
    	}
    },
    
    ["zatfoodcontainer"] = {
    	label = "Food container",
    	weight = 1,
    	stack = false,
    	close = true,
    	description = "Some Spicy Food in here..",
    	client = {
    		image = "zatfoodcontainer.png",
    	}
    },
    
    ["zatecolalight"] = {
    	label = "eCola Light",
    	weight = 1,
    	stack = false,
    	close = true,
    	description = "eCola Light Drinks..",
    	client = {
    		image = "zatecolalight.png",
    	}
    },
    
    ["zatsprunk"] = {
    	label = "Sprunk",
    	weight = 1,
    	stack = false,
    	close = true,
    	description = "Sprunk Drinks..",
    	client = {
    		image = "zatsprunk.png",
    	}
    },
    
    ["zatorangotang"] = {
    	label = "Orang-O-tang",
    	weight = 1,
    	stack = false,
    	close = true,
    	description = "orang-o-tang Drinks..",
    	client = {
    		image = "zatorangotang.png",
    	}
    },
  • Add the images inside your ox_inventory/web/images.

  • Add into ox_inventory/modules/items/client.lua

    Item('zatfoodcontainer', function(data, slot)
    	ox_inventory:useItem(data, function(data)
    		if data then
    			TriggerServerEvent("zat-snrbuns:server:UseContainer", slot)
    		end
    	end)
    end)
    
    Item('zatburger', function(data, slot)
    	ox_inventory:useItem(data, function(data)
    		if data then
    			TriggerServerEvent("zat-snrbuns:server:EatDrink", slot)
    		end
    	end)
    end)
    
    Item('zatsprunk', function(data, slot)
    	ox_inventory:useItem(data, function(data)
    		if data then
    			TriggerServerEvent("zat-snrbuns:server:EatDrink", slot)
    		end
    	end)
    end)
    
    Item('zatecola', function(data, slot)
    	ox_inventory:useItem(data, function(data)
    		if data then
    			TriggerServerEvent("zat-snrbuns:server:EatDrink", slot)
    		end
    	end)
    end)
    
    Item('zatecolalight', function(data, slot)
    	ox_inventory:useItem(data, function(data)
    		if data then
    			TriggerServerEvent("zat-snrbuns:server:EatDrink", slot)
    		end
    	end)
    end)
    
    Item('zatorangotang', function(data, slot)
    	ox_inventory:useItem(data, function(data)
    		if data then
    			TriggerServerEvent("zat-snrbuns:server:EatDrink", slot)
    		end
    	end)
    end)
    
    Item('zatfries', function(data, slot)
    	ox_inventory:useItem(data, function(data)
    		if data then
    			TriggerServerEvent("zat-snrbuns:server:EatDrink", slot)
    		end
    	end)
    end)
  • Add this emote to your emote menu : - rpemotes\client\ AnimationList.lua :

["fries"] = { 
    "mp_player_inteat@burger",
    "mp_player_int_eat_burger",
    "Fries",
    AnimationOptions = {
        Prop = 'prop_burger_friesbox_f',
        PropBone = 60309,
        PropPlacement = {
            0.0500,
            -0.0200,
            -0.0200,
            0.0,
            -66.7427,
            68.3677
        },
        EmoteMoving = true
    }
},
  • ensure the following resources : 1 - ensure zat-snrbuns 2 - ensure zat-snrbuns_props

Last updated