Git Product home page Git Product logo

qb-expandablevehicletrunk's Introduction

Qb-expandableVehicleTrunk

  • Custom server-side vehicle inventory weight

Working on

  • add lock screen
  • mini-game

Installation

Step 1

  • install swkeep-tablet
  • and then import expandableVehicleTrunk.sql into your SQL

Step 2

  • inside "qb-inventory/client/main.lua".
  • try to find this code "if CurrentVehicle then -- Trunk".
  • and then you should be abale to see this line >> "local vehicleClass = GetVehicleClass(curVeh)"
  • then add code below
local plate = QBCore.Functions.GetPlate(curVeh)

Step 3

  • now try to find this code
local other = {
    maxweight = maxweight,
    slots = slots,
}
  • and then add "plate = plate" to table
local other = {
    maxweight = maxweight,
    slots = slots,
    plate = plate
}

Step 4

  • inside "qb-inventory/server/main.lua".
  • try to find this functions >> "inventory:server:OpenInventory".
if Trunks[id].isOpen then
    local Target = QBCore.Functions.GetPlayer(Trunks[id].isOpen)
    if Target ~= nil then
        TriggerClientEvent('inventory:client:CheckOpenState', Trunks[id].isOpen, name, id, Trunks[id].label)
    else
        Trunks[id].isOpen = false
    end
    end
end

    ( ADD CODE HERE )

secondInv.name = "trunk-"..id
secondInv.label = "Trunk-"..id
replace ( ADD CODE HERE ) with code below
    local result = exports.oxmysql:scalarSync('SELECT `actualCarryCapacity` FROM player_vehicles WHERE plate = ?',
        {other.plate})
    if result then
        other.maxweight = json.decode(result)
    end

Previews

tablet tablet tablet tablet tablet tablet tablet tablet

qb-expandablevehicletrunk's People

Contributors

swkeep 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.