Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 1.63 KB

README.md

File metadata and controls

30 lines (26 loc) · 1.63 KB

qbx-npwd

This is a compatibility resource that enables npwd to function properly with qb-core. Please ensure that you have the latest release of npwd and qb-core installed

Installation Steps:

  1. Download this repository and place it in the resources directory
  2. Run the patch.sql to patch the database for npwd
  3. Add ensure qbx-npwd to your server.cfg (Start this resource after qb-core and ox_inventory and before npwd have been started)

Enabling PhoneAsItem Support

If you wish to require a player to have a phone item in their inventory, you must follow the steps below.

  1. Navigate to the config.json in npwd and change the following settings under PhoneAsItem:
"PhoneAsItem": {
    "enabled": true,
    "exportResource": "qbx-npwd",
    "exportFunction": "HasPhone"
  },
  1. Also in the config.json in npwd change the following settings under database:
  "database": {
    "playerTable": "players",
    "identifierColumn": "citizenid",
  },
  1. Navigate to the config.lua in qbx-npwd and verify all the items you want to work as a phone are listed.

Other Features

  1. Double clicking any phone items in the inventory will open the phone. If you want to be able to drag and drop phone items over the Use button in the inventory, you must navigate to qb-core/shared/items.lua, find your phone item, and change usable to true and shouldClose to true.