βQBCore Installation
This explains the small installation steps which are necessary for persistent death/armor across server restarts. You can remove qb- ambulancejob as this is a complete replacement.
Metadata
PlayerData.metadata['bleeding'] = PlayerData.metadata['bleeding'] or 0bleeding = 0,Adding new heal items
-- qb-inventory example
exampleitem = {
name = "exampleitem",
label = "Example Item",
weight = 500,
type = "item",
image = "exampleitem.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "An example item",
},
-- ox inventory example
["exampleitem"] = {
label = "Example Item",
weight = 500,
stack = true,
close = true,
consume = 0,
description = "A heal item.",
client = { image = "exampleitem.png", },
server = { export = 'randol_medical.exampleitem', },
},Last updated