Skip to main content

Rental

Dependencies

  1. [qb-core]
  2. [ps-buff]
  3. [ps-hud]

Installation

  1. Place the folder "drp-rental" in your drp folder if drp folder in not available create one or you can just put it in your resources folder.
  2. Add ensure drp-rental in your server.cfgif not using drp folder then just start drp-rental
  3. Add the item to your items.lua(Available in qb-core/shared/items):
    • Add Below code to qb-core/shared/items.lua
  -- drp rental
["rentalpaper"] = {["name"] = "rentalpaper", ["label"] = "Rental Papers", ["weight"] = 50, ["type"] = "item", ["image"] = "rentalPaper.png", ["unique"] = true, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Document for the rented car."},
  1. Add images provided with the file inside qb-inventory/html/images
  2. Go to qb-inventory/html/js/app.js and add the code provided below.
          } else if (itemData.name == "rentalpaper") {
$(".item-info-title").html('<p>' + itemData.label + '</p>')
$(".item-info-description").html('<p><strong>Plate: </strong><span>'+ itemData.info.label + '</span></p>'
);
  1. Restart the server and you are good to go.