Installation
Last updated
Last updated
(REQUIRED!)
(OPEN FILE is adaptable to any qb-target, qtarget, and so on.)
(SPECIAL FEATURES have been added to this edition. Not necessary)
(If using the TARGET SYSTEM, you won't need this.)
Navigate to fxmanifest.lua
and remove any unnecessary framework.
ESX: Remove this Line
'@qbx_core/modules/playerdata.lua'
'@qbx_core/modules/lib.lua'
'client/qbox.lua'
'client/qb.lua'
'server/qbox.lua'
'server/qb.lua'
ESX: Remove this File
esx_ambulancejob
QB-Core: Remove this Line
'@qbx_core/modules/playerdata.lua'
'@qbx_core/modules/lib.lua'
'client/qbox.lua'
'client/esx.lua'
'server/qbox.lua'
'server/esx.lua'
QB-Core: Remove this File
qb_ambulancejob
QBox: Remove this Line
'client/esx.lua'
'client/qb.lua'
'server/esx.lua'
'server/qb.lua'
QBox: Remove this File
qbx_ambulancejob
qbx_medical
Check the Asset Folder for Image, Inventory Items, Database. Note: SQL is only for ESX
Add Images and Necessary Items to the Inventory
If you are using all you have to do is run it; no changes are required.
If you are not using my modified then you need to do this
#Ox_Inventory Fix
* Go to `ox_inventory>client.lua`
* Find `canOpenInventory()`
## Example_Ox
from this:
```lua
if PlayerData.dead or IsPedFatallyInjured(playerPed) then
return shared.info('cannot open inventory', '(fatal injury)')
end
```
to this:
```lua
if PlayerData.dead then
return shared.info('cannot open inventory', '(fatal injury)')
end
```