Coder Social home page Coder Social logo

fakeplates's Introduction

fakeplates

For the plate to save to the item, you need to edit your qb-inventory.

Preview - https://www.youtube.com/watch?v=0-zeAanZaUo

Dependencies - qb-lock - https://github.com/NathanERP/qb-lock

//// First Edit ////

Around line 571 in qb-inventory/html/js/app.js add this

    } else if (itemData.name == "license_plate") {
        $(".item-info-title").html("<p>" + itemData.label + "</p>");
        $(".item-info-description").html('<p>Plate: ' + itemData.info.plate + '</p>');
    } else if (itemData.name == "fake_plate") {
        $(".item-info-title").html("<p>" + itemData.label + "</p>");
        $(".item-info-description").html('<p>'+itemData.description+'</p><p>Plate: ' + itemData.info.plate + '</p>');

After you add that, go to line 1505 in qb-inventory/server/main.lua add this

elseif itemData["name"] == "license_plate" then
	info.plate = tostring(QBCore.Shared.RandomInt(2) .. QBCore.Shared.RandomStr(2) .. QBCore.Shared.RandomInt(2) .. QBCore.Shared.RandomStr(2))
elseif itemData["name"] == "fake_plate" then
	info.plate = tostring(QBCore.Shared.RandomInt(2) .. QBCore.Shared.RandomStr(2) .. QBCore.Shared.RandomInt(2) .. QBCore.Shared.RandomStr(2))

Last thing, add the items to you qb-core/shared/items.lua

["fake_plate"] = {["name"] = "fake_plate", ["label"] = "Fake Plate", ["weight"] = 0, ["type"] = "item", ["image"] = "plate.png", ["unique"] = true, ["useable"] = true, ['shouldClose'] = false, ["combinable"] = nil, ["description"] = "Marked for Police seizure."},

["license_plate"] = {["name"] = "license_plate", ["label"] = "Plate", ["weight"] = 0, ["type"] = "item", ["image"] = "plate.png", ["unique"] = true, ["useable"] = true, ['shouldClose'] = false, ["combinable"] = nil, ["description"] = "Plate for vehicle"},

fakeplates's People

Contributors

mackaelroni avatar

Stargazers

Falcon avatar rpRIGGS avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.