HighLeaks
Help

Chezza's Inventory — Source Code — 21/01/2024

serveur.les. serveur.les. Started 23 replies 3,256 views 5 Credits

Download Link Locked

Pay 5 credits to unlock the download link for 24 hours.

Login to unlock
#1
[attachment removed] 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] [HEADING=2]Usage[/HEADING] 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
    [HEADING=2][/HEADING] [HEADING=2]Code[/HEADING] 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(); };
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
[HEADING=2][/HEADING] Look for this:
elseif action == 'search' then OpenBodySearchMenu(closestPlayer)
[HEADING=2][/HEADING] Replace the code above with this one:
elseif action == 'search' then TriggerEvent('inventory:openPlayerInventory', GetPlayerServerId(closestPlayer))
[HEADING=2][/HEADING] 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 = xPlayer.getMaxWeight())end)[/code] 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! https://github.com/MSK-Scripts/msk_weaponammoitems 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 [HEADING=3]In order to fix this issue head over to es_extended/client/main.lua ~385[/HEADING]
[HEADING=2][/HEADING] 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
[HEADING=2][/HEADING] [HEADING=2][/HEADING] 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 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[/code] Best regards,[/hr][/station][/esx][/station][/esx][/station][/esx][/station][/esx][/v][/hr][/v][/only][/boolean][/only][/only][/attachment]
#1
nice one man thanks for work
#2
Don’t work doesn’t let it open
#3
nice nice nice nice nice
#4
nice nice nice nice nice
#5
nice nice nice nice nice
#6
Do you have chezza's phone source ?
#7




wilbiklol,

wrote:



Don’t work doesn’t let it open




it works 100%
#8




deblo,

wrote:



Do you have chezza's phone source ?




no I don't have access because I didn't make the purchase, but if you made the purchase you would have access to the source code
#9




serveur.les.,

wrote:



it works 100%




Nah bro tried it like 10 times and restarted server I even redownloaded it
#10




serveur.les.,

wrote:



[attachment removed]

-=Stripped Content=-




Nah bro tried it like 10 times and restarted server I even redownloaded it[/attachment]
#11
nice work and very nice job
#12
Thanks for the share my man
#13




hamzabenghenia,

wrote:



Nah bro tried it like 10 times and restarted server I even redownloaded it




I'm going to try the resource and I'll keep you posted
#14




hamzabenghenia,

wrote:



Nah bro tried it like 10 times and restarted server I even redownloaded it




https://drive.google.com/file/d/1Ki8vRRC8gC13dFHaN9Ki3yKO-8O0_Adi/view?usp=sharing
#15
prepare new link inventory 100% work, me tested

inventory tested server esx legacy version 1.10.3
#16
thank you for sharing bro
#17
thank you for sharing bro
#18
Don’t work doesn’t let it open
#19
love to see it. thank you
#20
If this work correctly, big W for you bro