Hard Dependencies

Soft Dependencies

If you don't want these 2 scripts you'll need to edit script

In server/main.lua you have 2 items for blood (1st item that drops when somebody dies and 2nd is analized blood) name them however you want

You also need to add these 2 items in ox_inventory/data/items.lua

['blood'] = { -- name must be the same as in server side
  label = 'Blood',
  weight = 40,
  stack = true,
  close = true,
	},
['analizedblood'] = { -- name must be the same as in server side
  label = 'Analized Blod',
  weight = 10,
  stack = true,
  close = true,
  client = {
    --event = "open:evidence" -- if you use older version then uncomment this and comment export
    export = "open:evidence"
  },
},