Skip to main content

Installation

  1. Remove the old qb-phone from you server resources folder.
  2. Place the file "qb-phone" in your drp folder, If drp folder in not available create one directory [drp] or you can just put it in your resources folder.
  3. Add ensure [drp] in your server.cfg if not using drp folder then just ensure qb-phone
  4. Replace the old phone image with the new one provided in the img folder and paste it inside qb-inventory/html/images
  5. Add the item to your items.lua(Available in qb-core/shared/items):
    • Add Below code to qb-core/shared/items.lua
    --drp phone
["vpn"] = {["name"] = "vpn", ["label"] = "VPN", ["weight"] = 100, ["type"] = "item", ["image"] = "vpn.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "some sh**" },
  1. Head over to your qb-core/server/Player.lua
  2. Paste the below code into your metadata.
    PlayerData.metadata['crypto'] = PlayerData.metadata['crypto'] or {
["shung"] = 0,
["gne"] = 0,
["xcoin"] = 0,
["lme"] = 0
}
  1. If you are using default qb-garage then open the qb-garages/config.lua and replace the first line
Config = {}

to

Config = Config or {}
  1. Restart your server.

Phone Camera Setup

  1. Go to your config.lua file.
  2. Create a webhook on (discord) and copy the link.
  3. going to line 18 there you will find Config.Webhook = '', paste you webhook inside the quote.
  4. Restart the server and camera will start working.

Database Setup

  1. If you server havent been running previously then go ahead and run the provided SQL file in your database.
  2. If your server has been running qb-phone previously please update your sql while being carefull and take a backup of your database, so you have no data lost.
  3. After the SQL setup you can now drop the resource into your server and start it up while you conduct the next steps.