Stop/delet: Script: nchub-anticheat for run servr.
Tested Work 100%
Hidden link for visitors, to see Log in or register now.
This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.
If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.
Hidden link for visitors, to see Log in or register now.
Good job
Ive tried stopping the nchub anticheat it syill doesnt work
whyinventory not work stashes ....![]()
Nchub V2 inventory not worki dont know TAB not function i try to find it out why???
also every shop not working...maybe it is escrow?!!?
bc_wounding is entiletment...!!! bla bla ...
on v2
on v3
problem is qb-inventory
dont send keybind to settings like "Open inventory" on TAB...
i will find out ...
maybe qb-inventory have some protection i dontknow...if someone can help please write
help please
help please
Hi,
Indeed, in qb-inventory v2 and v3, the system doesn’t rely on directly detecting classic keys like TAB to open the inventory. Instead, it works through custom client events, which makes direct keyboard shortcut handling more complex.
It’s not really a “protection” per se, but rather an architecture designed to centralize interactions via triggers and events, allowing more flexibility and preventing input conflicts.
To implement a custom keyboard shortcut, you need to listen for these specific events (qb-inventory:clientpenInventory) or trigger them yourself from your input handler. Directly modifying qb-inventory’s native key behavior might cause compatibility issues.
I recommend digging into the client-side event handling in Lua and creating a custom listener that fires these triggers when you detect the TAB key. If you want, I can help you do that properly.
Let me know!
-- - Added CloseInventoryProperly() to close/save cleanly.
-- - New command: inventory_toggle to open/close (toggle) the inventory.
-- - Keymapped TAB to call the toggle.
-- - Original code left intact (append-only, nothing removed).
-- - Added small client event to trigger proper close if needed.
-- - Note: check for TAB keybind conflicts if it was used elsewhere.
Rename main.txt to main.lua, place it on the client side of your resource, and it should work. Let me know if anything breaks or needs adjustment.
[QBCore] Converted 230 items from qb-inventory to QBCore.Shared[QBCore] Converted 230 items from qb-inventory to QBCore.Shared
juste 3 minutes[QBCore] Converted 230 items from qb-inventory to QBCore.Shared
just 3 minutes[QBCore] Converted 230 items from qb-inventory to QBCore.Shared
Too complicated to do it right away. Go check the html/images file htlm/ammo_images[QBCore] Converted 230 items from qb-inventory to QBCore.Shared
QBCore = QBCore or {}
QBCore.Shared = QBCore.Shared or {}
QBCore.Shared.Items = QBCore.Shared.Items or {}
QBCore.Shared.Items["1050"] = { name = "1050", label = "1050", weight = 200, type = "item", image = "1050.png", unique = false, useable = false,
Where should I put this in? I still can't open the inventory. Or do you know what the default keybind is for creating an inventory?Rename main.txt to main.lua, place it on the client side of your resource, and it should work. Let me know if anything breaks or needs adjustment.
Sorry for the incorrect information I provided earlier. After checking the code, the shortcut isn't defined in the client, but in the shared/config.lua file.Where should I put this in? I still can't open the inventory. Or do you know what the default keybind is for creating an inventory?
Config.KeyBinds = {
Inventory = 'TAB',
HotBar = 'z'
}