• New pricing for Credits and VIP

  • We sell Discord Boosts (level 3) now at a very cheap price and 100% guarantee safe and with replacement guarantees if there happens to be an issue💪

ESX Chezza's Inventory — Source Code — 21/01/2024 (1 Viewer)

serveur.les.

Well-known member
Apr 22, 2022
243
49
28
Credits
2,121
1705970505008.png

5Credit to debloque Chezza inventoryV4 open source, tested esx legacy V1.10.3

test possible ip connect: `connect game2.hebergtonserv.com:30120`


Link new version chezza inventory lock cfx
Link chezza v3 open source
Addon link site web chezza
Working getPlayerWeight and canCarryItem Exports [Only V4]
  • https://musiker15.gitbook.io/chezza-studios/inventory-v4/exports/getweight
  • https://musiker15.gitbook.io/chezza-studios/inventory-v4/exports/cancarry


    Export: clearInventory [Only V4]

    Usage​

    You can only use this export serverside!
    exports.inventory:clearInventory(xPlayer, deleteWeapons --[[boolean]])
    Example

    exports.inventory:clearInventory(xPlayer, true) -- Will delete Weapons tooexports.inventory:clearInventory(xPlayer, false) -- Will not delete Weapons

    Code​

    Add it at the bottom of inventory/plugins/players/sv_player.lua.

    exports('clearInventory', function(xPlayer, delWeapons) for k, v in pairs(xPlayer.inventory) do if v.count > 0 then xPlayer.setInventoryItem(v.name, 0) end end if delWeapons then for k, v in pairs(xPlayer.loadout) do xPlayer.removeWeapon(v.name) end endend)
Change Built in Notify [Only V4]
inventory/web/src/App.tsx
Replace
const notify = (msg: string, type: string) => { toast(<Notify msg={msg} type={type} />); };
with
const notify = (msg: string, type: string) => { post("notify", { msg: {msg}, type: {type}, }); };
THEN
Paste this somewhere in client files in inventory:
RegisterNUICallback('notify', function(data, cb) exports['mythic_notify']:SendAlert(data.type, data.msg, 5000) -- you can change this to whatever notification system you use cb("ok")end)
Remember to build the inventory after that

(Official Guide) Search Function for esx_policejob. [V3 / V4]
In order to change the default search function from esx_policejob head over to esx_policejob/client/main.lua ~285

Look for this:
elseif action == 'search' then OpenBodySearchMenu(closestPlayer)

Replace the code above with this one:
elseif action == 'search' then TriggerEvent('inventory:openPlayerInventory', GetPlayerServerId(closestPlayer))

For V4 replace with this one if you want to receive weapons:
elseif action == 'search' then TriggerEvent('inventory:openPlayerInventory', GetPlayerServerId(closestPlayer), true)

🦵 Disable run while inventory is full. ONLY V3
Hello hello my favorite community <3! This is a simple guide for disabling run while your inventory is full.
IMPORTANT!!! This will only work if Config.PlayerWeight is ENABLED!
First of all go to inventory/server/main.lua and paste this somewhere:
ESX.RegisterServerCallback("inventory:isMax", function(source, cb) local xPlayer = ESX.GetPlayerFromId(source) if not xPlayer then return end cb(xPlayer.getWeight() >= xPlayer.getMaxWeight())end)
Then go to inventory/client/main.lua and paste this somewhere:
CreateThread(function() while true do Wait(1000) ESX.TriggerServerCallback("inventory:isMax", function(isMax) isAbleToRun = not isMax end) endend)

Ammunition as Items [V3 / V4]
Only works with ESX 1.2 and above!
Don't forget to insert the items from config.lua to your database.


Sqz_job support. ONLY V3
Support for Sqz_Unijobs!
Make a new .lua file in inventory/client/plugins named as jobs.lua and add this to it
RegisterNetEvent('inventory:openJobsInventory')AddEventHandler('inventory:openJobsInventory', function (Config) OpenInventory({ id = Config, type = 'Jobs', title = 'Job: '..Config, weight = 20000, save = true, timeout = 1000 })end)
And search for the function called OpenArmoryMenu() in sqz_unijobs/client/main.lua
And replace for this:
function OpenArmoryMenu(station) local elements = {} if Config.Jobs[ESX.PlayerData.job.name].Zones[station].BuyWeapon and ESX.PlayerData.job.grade >= Config.Jobs[ESX.PlayerData.job.name].Zones[station].BuyWeaponGrade then table.insert(elements, {label = _U('buy_weapon'), value = 'buy_weapons'}) end if Config.Jobs[ESX.PlayerData.job.name].Zones[station].OpenInventoryChezz then table.insert(elements, {label = 'Deposit', value = 'jobs_inventory'}) end if Config.Jobs[ESX.PlayerData.job.name].Zones[station].BuyItems then table.insert(elements, {label = _U('buy_items'), value = 'buy_items'}) end ESX.UI.Menu.CloseAll() ESX.UI.Menu.Open('default', GetCurrentResourceName(), 'armory', { title = _U('armory'), align = Config.MenuAlign, elements = elements }, function(data, menu) if data.current.value == 'buy_weapons' then OpenBuyWeaponsMenu(station) elseif data.current.value == 'jobs_inventory' then TriggerEvent('inventory:openJobsInventory', ESX.PlayerData.job.name) elseif data.current.value == 'buy_items' then OpenBuyItemsMenu(station) end end, function(data, menu) menu.close() CurrentAction = 'menu_armory' CurrentActionData = {station = station} end)end
In config.lua, zones/armory add this in all jobs that you want to has inventory. of sqz_unijobs add this:
OpenInventoryChezz = true

(Official Guide) Fix for throwables not updating on ESX Legacy

In order to fix this issue head over to es_extended/client/main.lua ~385​


Look for this:
if IsPedArmed(ESX.PlayerData.ped, 4) then if IsPedShooting(ESX.PlayerData.ped) then local _,weaponHash = GetCurrentPedWeapon(ESX.PlayerData.ped, true) local weapon = ESX.GetWeaponFromHash(weaponHash) if weapon then currentWeapon.name = weapon.name currentWeapon.hash = weaponHash currentWeapon.timer = 100 * sleep end endelse sleep = 200end

Replace the code above with this one.
if IsPedShooting(ESX.PlayerData.ped) then local _,weaponHash = GetCurrentPedWeapon(ESX.PlayerData.ped, true) local weapon = ESX.GetWeaponFromHash(weaponHash) if weapon then currentWeapon.name = weapon.name currentWeapon.hash = weaponHash currentWeapon.timer = 100 * sleep end end

Hello hello my favorite community <3! This is a simple fix for JerryCan/PetrolCan issue.

Go to LegacyFuel/source/fuel_client.lua and find

GiveWeaponToPed(ped, 883325847, 4500, false, true)

then replace it with:

TriggerServerEvent('fuel:weapon')

Then go to LegacyFuel/source/fuel_server.lua and under the fuel:pay event add

RegisterServerEvent('fuel:weapon') AddEventHandler('fuel:weapon', function() local _source = source local xPlayer = ESX.GetPlayerFromId(_source) xPlayer.addWeapon("weapon_petrolcan", 4500)end)

So your fuel_server.lua should look like this:

ESX = nilif Config.UseESX then TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end) RegisterServerEvent('fuel:pay') AddEventHandler('fuel:pay', function(price) local xPlayer = ESX.GetPlayerFromId(source) local amount = ESX.Math.Round(price) if price > 0 then xPlayer.removeMoney(amount) end end) RegisterServerEvent('fuel:weapon') AddEventHandler('fuel:weapon', function() local _source = source local xPlayer = ESX.GetPlayerFromId(_source) xPlayer.addWeapon("weapon_petrolcan", 4500) end)end

Best regards,
 
Last edited:
  • Post hidden due to user being banned.
  • Post hidden due to user being banned.
  • Post hidden due to user being banned.
  • Post hidden due to user being banned.
  • Post hidden due to user being banned.
  • Post hidden due to user being banned.
  • Post hidden due to user being banned.
  • Post hidden due to user being banned.
  • Post hidden due to user being banned.

Users who are viewing this thread

Top