├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── bump-manifest-version.js └── workflows │ ├── codeql-analysis.yml │ └── release.yml ├── .gitignore ├── .vscode └── extensions.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── client.lua ├── data ├── animations.lua ├── crafting.lua ├── evidence.lua ├── items.lua ├── licenses.lua ├── shops.lua ├── stashes.lua ├── vehicles.lua └── weapons.lua ├── fxmanifest.lua ├── init.lua ├── locales ├── ar.json ├── cs.json ├── da.json ├── de.json ├── el.json ├── en.json ├── es.json ├── et.json ├── fi.json ├── fr.json ├── hr.json ├── hu.json ├── id.json ├── it.json ├── ko.json ├── lt.json ├── nl.json ├── no.json ├── pl.json ├── pt-br.json ├── pt.json ├── ro.json ├── ru.json ├── sl.json ├── sr.json ├── sv.json ├── tr.json ├── zh-cn.json └── zh-tw.json ├── modules ├── bridge │ ├── client.lua │ ├── esx │ │ ├── client.lua │ │ └── server.lua │ ├── nd │ │ ├── client.lua │ │ └── server.lua │ ├── ox │ │ ├── client.lua │ │ └── server.lua │ ├── qbx │ │ ├── client.lua │ │ └── server.lua │ └── server.lua ├── crafting │ ├── client.lua │ └── server.lua ├── hooks │ └── server.lua ├── interface │ └── client.lua ├── inventory │ ├── client.lua │ └── server.lua ├── items │ ├── client.lua │ ├── containers.lua │ ├── server.lua │ └── shared.lua ├── mysql │ └── server.lua ├── pefcl │ └── server.lua ├── shops │ ├── client.lua │ └── server.lua ├── utils │ ├── client.lua │ └── server.lua └── weapon │ └── client.lua ├── server.lua ├── setup └── convert.lua └── web ├── .gitignore ├── .prettierrc ├── LICENSE ├── build ├── assets │ ├── index-2148db77.css │ └── index-dd6909e2.js └── index.html ├── images ├── WEAPON_ACIDPACKAGE.PNG ├── WEAPON_ADVANCEDRIFLE.png ├── WEAPON_APPISTOL.png ├── WEAPON_ASSAULTRIFLE.png ├── WEAPON_ASSAULTRIFLE_MK2.png ├── WEAPON_ASSAULTSHOTGUN.png ├── WEAPON_ASSAULTSMG.png ├── WEAPON_AUTOSHOTGUN.png ├── WEAPON_BALL.png ├── WEAPON_BAT.png ├── WEAPON_BATTLEAXE.png ├── WEAPON_BOTTLE.png ├── WEAPON_BREAD.PNG ├── WEAPON_BRIEFCASE.PNG ├── WEAPON_BRIEFCASE_02.PNG ├── WEAPON_BULLPUPRIFLE.png ├── WEAPON_BULLPUPRIFLE_MK2.png ├── WEAPON_BULLPUPSHOTGUN.png ├── WEAPON_BZGAS.png ├── WEAPON_CANDYCANE.png ├── WEAPON_CARBINERIFLE.png ├── WEAPON_CARBINERIFLE_MK2.png ├── WEAPON_CERAMICPISTOL.png ├── WEAPON_COMBATMG.png ├── WEAPON_COMBATMG_MK2.png ├── WEAPON_COMBATPDW.png ├── WEAPON_COMBATPISTOL.png ├── WEAPON_COMBATSHOTGUN.png ├── WEAPON_COMPACTLAUNCHER.png ├── WEAPON_COMPACTRIFLE.png ├── WEAPON_CROWBAR.png ├── WEAPON_DAGGER.PNG ├── WEAPON_DBSHOTGUN.png ├── WEAPON_DIGISCANNER.png ├── WEAPON_DOUBLEACTION.png ├── WEAPON_EMPLAUNCHER.png ├── WEAPON_FERTILIZERCAN.png ├── WEAPON_FIREEXTINGUISHER.png ├── WEAPON_FIREWORK.png ├── WEAPON_FLARE.png ├── WEAPON_FLAREGUN.png ├── WEAPON_FLASHLIGHT.png ├── WEAPON_GADGETPISTOL.png ├── WEAPON_GARBAGEBAG.PNG ├── WEAPON_GAS.PNG ├── WEAPON_GOLFCLUB.png ├── WEAPON_GRENADE.png ├── WEAPON_GRENADELAUNCHER.png ├── WEAPON_GRENADELAUNCHER_SMOKE.PNG ├── WEAPON_GUSENBERG.png ├── WEAPON_HAMMER.png ├── WEAPON_HANDCUFFS.PNG ├── WEAPON_HATCHET.png ├── WEAPON_HAZARDCAN.png ├── WEAPON_HEAVYPISTOL.png ├── WEAPON_HEAVYRIFLE.png ├── WEAPON_HEAVYSHOTGUN.png ├── WEAPON_HEAVYSNIPER.png ├── WEAPON_HEAVYSNIPER_MK2.png ├── WEAPON_HOMINGLAUNCHER.png ├── WEAPON_KNIFE.png ├── WEAPON_KNUCKLE.png ├── WEAPON_MACHETE.png ├── WEAPON_MACHINEPISTOL.png ├── WEAPON_MARKSMANPISTOL.png ├── WEAPON_MARKSMANRIFLE.png ├── WEAPON_MARKSMANRIFLE_MK2.png ├── WEAPON_METALDETECTOR.png ├── WEAPON_MG.png ├── WEAPON_MICROSMG.png ├── WEAPON_MILITARYRIFLE.png ├── WEAPON_MINIGUN.png ├── WEAPON_MINISMG.png ├── WEAPON_MOLOTOV.png ├── WEAPON_MUSKET.png ├── WEAPON_NAVYREVOLVER.png ├── WEAPON_NIGHTSTICK.png ├── WEAPON_PETROLCAN.png ├── WEAPON_PIPEBOMB.png ├── WEAPON_PISTOL.png ├── WEAPON_PISTOL50.png ├── WEAPON_PISTOLXM3.png ├── WEAPON_PISTOL_MK2.png ├── WEAPON_POOLCUE.png ├── WEAPON_PRECISIONRIFLE.png ├── WEAPON_PROXMINE.png ├── WEAPON_PUMPSHOTGUN.png ├── WEAPON_PUMPSHOTGUN_MK2.png ├── WEAPON_RAILGUN.png ├── WEAPON_RAILGUNXM3.png ├── WEAPON_RAYCARBINE.png ├── WEAPON_RAYMINIGUN.png ├── WEAPON_RAYPISTOL.png ├── WEAPON_REVOLVER.png ├── WEAPON_REVOLVER_MK2.png ├── WEAPON_RPG.png ├── WEAPON_SAWNOFFSHOTGUN.png ├── WEAPON_SMG.png ├── WEAPON_SMG_MK2.png ├── WEAPON_SMOKEGRENADE.png ├── WEAPON_SNIPERRIFLE.png ├── WEAPON_SNOWBALL.png ├── WEAPON_SNSPISTOL.png ├── WEAPON_SNSPISTOL_MK2.png ├── WEAPON_SPECIALCARBINE.png ├── WEAPON_SPECIALCARBINE_MK2.png ├── WEAPON_STICKYBOMB.png ├── WEAPON_STONE_HATCHET.png ├── WEAPON_STUNGUN.png ├── WEAPON_SWITCHBLADE.png ├── WEAPON_TECPISTOL.png ├── WEAPON_VINTAGEPISTOL.png ├── WEAPON_WRENCH.png ├── advancedkit.png ├── ammo-22.png ├── ammo-38.png ├── ammo-44.png ├── ammo-45.png ├── ammo-50.png ├── ammo-9.png ├── ammo-beanbag.png ├── ammo-emp.png ├── ammo-firework.PNG ├── ammo-flare.png ├── ammo-grenade.png ├── ammo-heavysniper.png ├── ammo-laser.png ├── ammo-musket.png ├── ammo-railgun.png ├── ammo-rifle.png ├── ammo-rifle2.png ├── ammo-rocket.png ├── ammo-shotgun.png ├── ammo-sniper.png ├── armour.png ├── at_barrel.png ├── at_clip_drum.png ├── at_clip_extended.png ├── at_clip_extended2.png ├── at_flashlight.png ├── at_grip.png ├── at_muzzle_bell.png ├── at_muzzle_fat.png ├── at_muzzle_flat.png ├── at_muzzle_heavy.png ├── at_muzzle_precision'.png ├── at_muzzle_slanted.png ├── at_muzzle_split.png ├── at_muzzle_squared.png ├── at_muzzle_tactical.png ├── at_scope_advanced.png ├── at_scope_holo.png ├── at_scope_large.png ├── at_scope_medium.png ├── at_scope_nv.png ├── at_scope_small.png ├── at_scope_thermal.png ├── at_suppressor.png ├── bandage.png ├── black_money.png ├── burger.png ├── burger_chicken.png ├── card_bank.png ├── card_id.png ├── carkey.png ├── cigarette.png ├── cigarettes_redwood.png ├── cocaine.png ├── cola.png ├── donut.png ├── fries.png ├── garbage.png ├── key.png ├── lockpick.png ├── medikit.png ├── meth.png ├── money.png ├── mustard.png ├── oldkey.png ├── panties.png ├── paperbag.png ├── parachute.png ├── phone.png ├── pizza_ham.png ├── pizza_ham_box.png ├── pizza_ham_slice.png ├── radio.png ├── readme.md ├── scrapmetal.png ├── sprunk.png ├── trash.png ├── trash_bread.png ├── trash_burger.png ├── trash_can.png ├── trash_chips.png ├── usb_black.png ├── water.png ├── weed.png └── ziptie.png ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── App.tsx ├── assets │ ├── bag.png │ ├── close.png │ ├── hand.png │ ├── handshake.png │ └── weight.png ├── components │ ├── inventory │ │ ├── HotInventory.tsx │ │ ├── HotInventoryGrid.tsx │ │ ├── InventoryContext.tsx │ │ ├── InventoryControl.tsx │ │ ├── InventoryGrid.tsx │ │ ├── InventoryHotbar.tsx │ │ ├── InventorySlot.tsx │ │ ├── LeftInventory.tsx │ │ ├── RightInventory.tsx │ │ ├── SlotTooltip.tsx │ │ ├── UsefulControls.tsx │ │ └── index.tsx │ └── utils │ │ ├── Divider.tsx │ │ ├── DragPreview.tsx │ │ ├── ItemNotifications.tsx │ │ ├── KeyPress.tsx │ │ ├── Tooltip.tsx │ │ ├── WeightBar.tsx │ │ ├── icons │ │ └── ClockIcon.tsx │ │ ├── menu │ │ └── Menu.tsx │ │ └── transitions │ │ ├── Fade.tsx │ │ └── SlideUp.tsx ├── dnd │ ├── onBuy.ts │ ├── onCraft.ts │ ├── onDrop.ts │ ├── onGive.ts │ └── onUse.ts ├── helpers │ └── index.ts ├── hooks │ ├── useDebounce.ts │ ├── useExitListener.ts │ ├── useIntersection.ts │ ├── useKeyPress.ts │ ├── useNuiEvent.ts │ └── useQueue.ts ├── index.scss ├── main.tsx ├── reducers │ ├── index.ts │ ├── moveSlots.ts │ ├── refreshSlots.ts │ ├── setupInventory.ts │ ├── stackSlots.ts │ └── swapSlots.ts ├── store │ ├── contextMenu.ts │ ├── imagepath.ts │ ├── index.ts │ ├── inventory.ts │ ├── items.ts │ ├── locale.ts │ └── tooltip.ts ├── thunks │ ├── buyItem.ts │ ├── craftItem.ts │ └── validateItems.ts ├── typings │ ├── dnd.ts │ ├── index.ts │ ├── inventory.ts │ ├── item.ts │ ├── slot.ts │ └── state.ts ├── utils │ ├── debugData.ts │ ├── fetchNui.ts │ ├── misc.ts │ └── setClipboard.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/bump-manifest-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.github/actions/bump-manifest-version.js -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/README.md -------------------------------------------------------------------------------- /client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/client.lua -------------------------------------------------------------------------------- /data/animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/animations.lua -------------------------------------------------------------------------------- /data/crafting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/crafting.lua -------------------------------------------------------------------------------- /data/evidence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/evidence.lua -------------------------------------------------------------------------------- /data/items.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/items.lua -------------------------------------------------------------------------------- /data/licenses.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/licenses.lua -------------------------------------------------------------------------------- /data/shops.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/shops.lua -------------------------------------------------------------------------------- /data/stashes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/stashes.lua -------------------------------------------------------------------------------- /data/vehicles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/vehicles.lua -------------------------------------------------------------------------------- /data/weapons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/data/weapons.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/init.lua -------------------------------------------------------------------------------- /locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/ar.json -------------------------------------------------------------------------------- /locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/cs.json -------------------------------------------------------------------------------- /locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/da.json -------------------------------------------------------------------------------- /locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/de.json -------------------------------------------------------------------------------- /locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/el.json -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/en.json -------------------------------------------------------------------------------- /locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/es.json -------------------------------------------------------------------------------- /locales/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/et.json -------------------------------------------------------------------------------- /locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/fi.json -------------------------------------------------------------------------------- /locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/fr.json -------------------------------------------------------------------------------- /locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/hr.json -------------------------------------------------------------------------------- /locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/hu.json -------------------------------------------------------------------------------- /locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/id.json -------------------------------------------------------------------------------- /locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/it.json -------------------------------------------------------------------------------- /locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/ko.json -------------------------------------------------------------------------------- /locales/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/lt.json -------------------------------------------------------------------------------- /locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/nl.json -------------------------------------------------------------------------------- /locales/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/no.json -------------------------------------------------------------------------------- /locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/pl.json -------------------------------------------------------------------------------- /locales/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/pt-br.json -------------------------------------------------------------------------------- /locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/pt.json -------------------------------------------------------------------------------- /locales/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/ro.json -------------------------------------------------------------------------------- /locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/ru.json -------------------------------------------------------------------------------- /locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/sl.json -------------------------------------------------------------------------------- /locales/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/sr.json -------------------------------------------------------------------------------- /locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/sv.json -------------------------------------------------------------------------------- /locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/tr.json -------------------------------------------------------------------------------- /locales/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/zh-cn.json -------------------------------------------------------------------------------- /locales/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/locales/zh-tw.json -------------------------------------------------------------------------------- /modules/bridge/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/client.lua -------------------------------------------------------------------------------- /modules/bridge/esx/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/esx/client.lua -------------------------------------------------------------------------------- /modules/bridge/esx/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/esx/server.lua -------------------------------------------------------------------------------- /modules/bridge/nd/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/nd/client.lua -------------------------------------------------------------------------------- /modules/bridge/nd/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/nd/server.lua -------------------------------------------------------------------------------- /modules/bridge/ox/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/ox/client.lua -------------------------------------------------------------------------------- /modules/bridge/ox/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/ox/server.lua -------------------------------------------------------------------------------- /modules/bridge/qbx/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/qbx/client.lua -------------------------------------------------------------------------------- /modules/bridge/qbx/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/qbx/server.lua -------------------------------------------------------------------------------- /modules/bridge/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/bridge/server.lua -------------------------------------------------------------------------------- /modules/crafting/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/crafting/client.lua -------------------------------------------------------------------------------- /modules/crafting/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/crafting/server.lua -------------------------------------------------------------------------------- /modules/hooks/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/hooks/server.lua -------------------------------------------------------------------------------- /modules/interface/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/interface/client.lua -------------------------------------------------------------------------------- /modules/inventory/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/inventory/client.lua -------------------------------------------------------------------------------- /modules/inventory/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/inventory/server.lua -------------------------------------------------------------------------------- /modules/items/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/items/client.lua -------------------------------------------------------------------------------- /modules/items/containers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/items/containers.lua -------------------------------------------------------------------------------- /modules/items/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/items/server.lua -------------------------------------------------------------------------------- /modules/items/shared.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/items/shared.lua -------------------------------------------------------------------------------- /modules/mysql/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/mysql/server.lua -------------------------------------------------------------------------------- /modules/pefcl/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/pefcl/server.lua -------------------------------------------------------------------------------- /modules/shops/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/shops/client.lua -------------------------------------------------------------------------------- /modules/shops/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/shops/server.lua -------------------------------------------------------------------------------- /modules/utils/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/utils/client.lua -------------------------------------------------------------------------------- /modules/utils/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/utils/server.lua -------------------------------------------------------------------------------- /modules/weapon/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/modules/weapon/client.lua -------------------------------------------------------------------------------- /server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/server.lua -------------------------------------------------------------------------------- /setup/convert.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/setup/convert.lua -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/.prettierrc -------------------------------------------------------------------------------- /web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/LICENSE -------------------------------------------------------------------------------- /web/build/assets/index-2148db77.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/build/assets/index-2148db77.css -------------------------------------------------------------------------------- /web/build/assets/index-dd6909e2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/build/assets/index-dd6909e2.js -------------------------------------------------------------------------------- /web/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/build/index.html -------------------------------------------------------------------------------- /web/images/WEAPON_ACIDPACKAGE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_ACIDPACKAGE.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_ADVANCEDRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_ADVANCEDRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_APPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_APPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_ASSAULTRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_ASSAULTRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_ASSAULTRIFLE_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_ASSAULTRIFLE_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_ASSAULTSHOTGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_ASSAULTSHOTGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_ASSAULTSMG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_ASSAULTSMG.png -------------------------------------------------------------------------------- /web/images/WEAPON_AUTOSHOTGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_AUTOSHOTGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_BALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BALL.png -------------------------------------------------------------------------------- /web/images/WEAPON_BAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BAT.png -------------------------------------------------------------------------------- /web/images/WEAPON_BATTLEAXE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BATTLEAXE.png -------------------------------------------------------------------------------- /web/images/WEAPON_BOTTLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BOTTLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_BREAD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BREAD.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_BRIEFCASE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BRIEFCASE.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_BRIEFCASE_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BRIEFCASE_02.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_BULLPUPRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BULLPUPRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_BULLPUPRIFLE_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BULLPUPRIFLE_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_BULLPUPSHOTGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BULLPUPSHOTGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_BZGAS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_BZGAS.png -------------------------------------------------------------------------------- /web/images/WEAPON_CANDYCANE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_CANDYCANE.png -------------------------------------------------------------------------------- /web/images/WEAPON_CARBINERIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_CARBINERIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_CARBINERIFLE_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_CARBINERIFLE_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_CERAMICPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_CERAMICPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_COMBATMG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_COMBATMG.png -------------------------------------------------------------------------------- /web/images/WEAPON_COMBATMG_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_COMBATMG_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_COMBATPDW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_COMBATPDW.png -------------------------------------------------------------------------------- /web/images/WEAPON_COMBATPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_COMBATPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_COMBATSHOTGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_COMBATSHOTGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_COMPACTLAUNCHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_COMPACTLAUNCHER.png -------------------------------------------------------------------------------- /web/images/WEAPON_COMPACTRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_COMPACTRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_CROWBAR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_CROWBAR.png -------------------------------------------------------------------------------- /web/images/WEAPON_DAGGER.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_DAGGER.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_DBSHOTGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_DBSHOTGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_DIGISCANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_DIGISCANNER.png -------------------------------------------------------------------------------- /web/images/WEAPON_DOUBLEACTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_DOUBLEACTION.png -------------------------------------------------------------------------------- /web/images/WEAPON_EMPLAUNCHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_EMPLAUNCHER.png -------------------------------------------------------------------------------- /web/images/WEAPON_FERTILIZERCAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_FERTILIZERCAN.png -------------------------------------------------------------------------------- /web/images/WEAPON_FIREEXTINGUISHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_FIREEXTINGUISHER.png -------------------------------------------------------------------------------- /web/images/WEAPON_FIREWORK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_FIREWORK.png -------------------------------------------------------------------------------- /web/images/WEAPON_FLARE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_FLARE.png -------------------------------------------------------------------------------- /web/images/WEAPON_FLAREGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_FLAREGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_FLASHLIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_FLASHLIGHT.png -------------------------------------------------------------------------------- /web/images/WEAPON_GADGETPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_GADGETPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_GARBAGEBAG.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_GARBAGEBAG.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_GAS.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_GAS.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_GOLFCLUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_GOLFCLUB.png -------------------------------------------------------------------------------- /web/images/WEAPON_GRENADE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_GRENADE.png -------------------------------------------------------------------------------- /web/images/WEAPON_GRENADELAUNCHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_GRENADELAUNCHER.png -------------------------------------------------------------------------------- /web/images/WEAPON_GRENADELAUNCHER_SMOKE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_GRENADELAUNCHER_SMOKE.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_GUSENBERG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_GUSENBERG.png -------------------------------------------------------------------------------- /web/images/WEAPON_HAMMER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HAMMER.png -------------------------------------------------------------------------------- /web/images/WEAPON_HANDCUFFS.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HANDCUFFS.PNG -------------------------------------------------------------------------------- /web/images/WEAPON_HATCHET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HATCHET.png -------------------------------------------------------------------------------- /web/images/WEAPON_HAZARDCAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HAZARDCAN.png -------------------------------------------------------------------------------- /web/images/WEAPON_HEAVYPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HEAVYPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_HEAVYRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HEAVYRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_HEAVYSHOTGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HEAVYSHOTGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_HEAVYSNIPER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HEAVYSNIPER.png -------------------------------------------------------------------------------- /web/images/WEAPON_HEAVYSNIPER_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HEAVYSNIPER_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_HOMINGLAUNCHER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_HOMINGLAUNCHER.png -------------------------------------------------------------------------------- /web/images/WEAPON_KNIFE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_KNIFE.png -------------------------------------------------------------------------------- /web/images/WEAPON_KNUCKLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_KNUCKLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_MACHETE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MACHETE.png -------------------------------------------------------------------------------- /web/images/WEAPON_MACHINEPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MACHINEPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_MARKSMANPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MARKSMANPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_MARKSMANRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MARKSMANRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_MARKSMANRIFLE_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MARKSMANRIFLE_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_METALDETECTOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_METALDETECTOR.png -------------------------------------------------------------------------------- /web/images/WEAPON_MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MG.png -------------------------------------------------------------------------------- /web/images/WEAPON_MICROSMG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MICROSMG.png -------------------------------------------------------------------------------- /web/images/WEAPON_MILITARYRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MILITARYRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_MINIGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MINIGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_MINISMG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MINISMG.png -------------------------------------------------------------------------------- /web/images/WEAPON_MOLOTOV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MOLOTOV.png -------------------------------------------------------------------------------- /web/images/WEAPON_MUSKET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_MUSKET.png -------------------------------------------------------------------------------- /web/images/WEAPON_NAVYREVOLVER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_NAVYREVOLVER.png -------------------------------------------------------------------------------- /web/images/WEAPON_NIGHTSTICK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_NIGHTSTICK.png -------------------------------------------------------------------------------- /web/images/WEAPON_PETROLCAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PETROLCAN.png -------------------------------------------------------------------------------- /web/images/WEAPON_PIPEBOMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PIPEBOMB.png -------------------------------------------------------------------------------- /web/images/WEAPON_PISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_PISTOL50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PISTOL50.png -------------------------------------------------------------------------------- /web/images/WEAPON_PISTOLXM3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PISTOLXM3.png -------------------------------------------------------------------------------- /web/images/WEAPON_PISTOL_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PISTOL_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_POOLCUE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_POOLCUE.png -------------------------------------------------------------------------------- /web/images/WEAPON_PRECISIONRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PRECISIONRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_PROXMINE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PROXMINE.png -------------------------------------------------------------------------------- /web/images/WEAPON_PUMPSHOTGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PUMPSHOTGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_PUMPSHOTGUN_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_PUMPSHOTGUN_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_RAILGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_RAILGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_RAILGUNXM3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_RAILGUNXM3.png -------------------------------------------------------------------------------- /web/images/WEAPON_RAYCARBINE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_RAYCARBINE.png -------------------------------------------------------------------------------- /web/images/WEAPON_RAYMINIGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_RAYMINIGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_RAYPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_RAYPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_REVOLVER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_REVOLVER.png -------------------------------------------------------------------------------- /web/images/WEAPON_REVOLVER_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_REVOLVER_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_RPG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_RPG.png -------------------------------------------------------------------------------- /web/images/WEAPON_SAWNOFFSHOTGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SAWNOFFSHOTGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_SMG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SMG.png -------------------------------------------------------------------------------- /web/images/WEAPON_SMG_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SMG_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_SMOKEGRENADE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SMOKEGRENADE.png -------------------------------------------------------------------------------- /web/images/WEAPON_SNIPERRIFLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SNIPERRIFLE.png -------------------------------------------------------------------------------- /web/images/WEAPON_SNOWBALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SNOWBALL.png -------------------------------------------------------------------------------- /web/images/WEAPON_SNSPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SNSPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_SNSPISTOL_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SNSPISTOL_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_SPECIALCARBINE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SPECIALCARBINE.png -------------------------------------------------------------------------------- /web/images/WEAPON_SPECIALCARBINE_MK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SPECIALCARBINE_MK2.png -------------------------------------------------------------------------------- /web/images/WEAPON_STICKYBOMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_STICKYBOMB.png -------------------------------------------------------------------------------- /web/images/WEAPON_STONE_HATCHET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_STONE_HATCHET.png -------------------------------------------------------------------------------- /web/images/WEAPON_STUNGUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_STUNGUN.png -------------------------------------------------------------------------------- /web/images/WEAPON_SWITCHBLADE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_SWITCHBLADE.png -------------------------------------------------------------------------------- /web/images/WEAPON_TECPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_TECPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_VINTAGEPISTOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_VINTAGEPISTOL.png -------------------------------------------------------------------------------- /web/images/WEAPON_WRENCH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/WEAPON_WRENCH.png -------------------------------------------------------------------------------- /web/images/advancedkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/advancedkit.png -------------------------------------------------------------------------------- /web/images/ammo-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-22.png -------------------------------------------------------------------------------- /web/images/ammo-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-38.png -------------------------------------------------------------------------------- /web/images/ammo-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-44.png -------------------------------------------------------------------------------- /web/images/ammo-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-45.png -------------------------------------------------------------------------------- /web/images/ammo-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-50.png -------------------------------------------------------------------------------- /web/images/ammo-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-9.png -------------------------------------------------------------------------------- /web/images/ammo-beanbag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-beanbag.png -------------------------------------------------------------------------------- /web/images/ammo-emp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-emp.png -------------------------------------------------------------------------------- /web/images/ammo-firework.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-firework.PNG -------------------------------------------------------------------------------- /web/images/ammo-flare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-flare.png -------------------------------------------------------------------------------- /web/images/ammo-grenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-grenade.png -------------------------------------------------------------------------------- /web/images/ammo-heavysniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-heavysniper.png -------------------------------------------------------------------------------- /web/images/ammo-laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-laser.png -------------------------------------------------------------------------------- /web/images/ammo-musket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-musket.png -------------------------------------------------------------------------------- /web/images/ammo-railgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-railgun.png -------------------------------------------------------------------------------- /web/images/ammo-rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-rifle.png -------------------------------------------------------------------------------- /web/images/ammo-rifle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-rifle2.png -------------------------------------------------------------------------------- /web/images/ammo-rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-rocket.png -------------------------------------------------------------------------------- /web/images/ammo-shotgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-shotgun.png -------------------------------------------------------------------------------- /web/images/ammo-sniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ammo-sniper.png -------------------------------------------------------------------------------- /web/images/armour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/armour.png -------------------------------------------------------------------------------- /web/images/at_barrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_barrel.png -------------------------------------------------------------------------------- /web/images/at_clip_drum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_clip_drum.png -------------------------------------------------------------------------------- /web/images/at_clip_extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_clip_extended.png -------------------------------------------------------------------------------- /web/images/at_clip_extended2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_clip_extended2.png -------------------------------------------------------------------------------- /web/images/at_flashlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_flashlight.png -------------------------------------------------------------------------------- /web/images/at_grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_grip.png -------------------------------------------------------------------------------- /web/images/at_muzzle_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_bell.png -------------------------------------------------------------------------------- /web/images/at_muzzle_fat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_fat.png -------------------------------------------------------------------------------- /web/images/at_muzzle_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_flat.png -------------------------------------------------------------------------------- /web/images/at_muzzle_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_heavy.png -------------------------------------------------------------------------------- /web/images/at_muzzle_precision'.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_precision'.png -------------------------------------------------------------------------------- /web/images/at_muzzle_slanted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_slanted.png -------------------------------------------------------------------------------- /web/images/at_muzzle_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_split.png -------------------------------------------------------------------------------- /web/images/at_muzzle_squared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_squared.png -------------------------------------------------------------------------------- /web/images/at_muzzle_tactical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_muzzle_tactical.png -------------------------------------------------------------------------------- /web/images/at_scope_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_scope_advanced.png -------------------------------------------------------------------------------- /web/images/at_scope_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_scope_holo.png -------------------------------------------------------------------------------- /web/images/at_scope_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_scope_large.png -------------------------------------------------------------------------------- /web/images/at_scope_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_scope_medium.png -------------------------------------------------------------------------------- /web/images/at_scope_nv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_scope_nv.png -------------------------------------------------------------------------------- /web/images/at_scope_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_scope_small.png -------------------------------------------------------------------------------- /web/images/at_scope_thermal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_scope_thermal.png -------------------------------------------------------------------------------- /web/images/at_suppressor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/at_suppressor.png -------------------------------------------------------------------------------- /web/images/bandage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/bandage.png -------------------------------------------------------------------------------- /web/images/black_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/black_money.png -------------------------------------------------------------------------------- /web/images/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/burger.png -------------------------------------------------------------------------------- /web/images/burger_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/burger_chicken.png -------------------------------------------------------------------------------- /web/images/card_bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/card_bank.png -------------------------------------------------------------------------------- /web/images/card_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/card_id.png -------------------------------------------------------------------------------- /web/images/carkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/carkey.png -------------------------------------------------------------------------------- /web/images/cigarette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/cigarette.png -------------------------------------------------------------------------------- /web/images/cigarettes_redwood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/cigarettes_redwood.png -------------------------------------------------------------------------------- /web/images/cocaine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/cocaine.png -------------------------------------------------------------------------------- /web/images/cola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/cola.png -------------------------------------------------------------------------------- /web/images/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/donut.png -------------------------------------------------------------------------------- /web/images/fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/fries.png -------------------------------------------------------------------------------- /web/images/garbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/garbage.png -------------------------------------------------------------------------------- /web/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/key.png -------------------------------------------------------------------------------- /web/images/lockpick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/lockpick.png -------------------------------------------------------------------------------- /web/images/medikit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/medikit.png -------------------------------------------------------------------------------- /web/images/meth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/meth.png -------------------------------------------------------------------------------- /web/images/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/money.png -------------------------------------------------------------------------------- /web/images/mustard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/mustard.png -------------------------------------------------------------------------------- /web/images/oldkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/oldkey.png -------------------------------------------------------------------------------- /web/images/panties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/panties.png -------------------------------------------------------------------------------- /web/images/paperbag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/paperbag.png -------------------------------------------------------------------------------- /web/images/parachute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/parachute.png -------------------------------------------------------------------------------- /web/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/phone.png -------------------------------------------------------------------------------- /web/images/pizza_ham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/pizza_ham.png -------------------------------------------------------------------------------- /web/images/pizza_ham_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/pizza_ham_box.png -------------------------------------------------------------------------------- /web/images/pizza_ham_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/pizza_ham_slice.png -------------------------------------------------------------------------------- /web/images/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/radio.png -------------------------------------------------------------------------------- /web/images/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/readme.md -------------------------------------------------------------------------------- /web/images/scrapmetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/scrapmetal.png -------------------------------------------------------------------------------- /web/images/sprunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/sprunk.png -------------------------------------------------------------------------------- /web/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/trash.png -------------------------------------------------------------------------------- /web/images/trash_bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/trash_bread.png -------------------------------------------------------------------------------- /web/images/trash_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/trash_burger.png -------------------------------------------------------------------------------- /web/images/trash_can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/trash_can.png -------------------------------------------------------------------------------- /web/images/trash_chips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/trash_chips.png -------------------------------------------------------------------------------- /web/images/usb_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/usb_black.png -------------------------------------------------------------------------------- /web/images/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/water.png -------------------------------------------------------------------------------- /web/images/weed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/weed.png -------------------------------------------------------------------------------- /web/images/ziptie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/images/ziptie.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/package.json -------------------------------------------------------------------------------- /web/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/pnpm-lock.yaml -------------------------------------------------------------------------------- /web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/App.tsx -------------------------------------------------------------------------------- /web/src/assets/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/assets/bag.png -------------------------------------------------------------------------------- /web/src/assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/assets/close.png -------------------------------------------------------------------------------- /web/src/assets/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/assets/hand.png -------------------------------------------------------------------------------- /web/src/assets/handshake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/assets/handshake.png -------------------------------------------------------------------------------- /web/src/assets/weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/assets/weight.png -------------------------------------------------------------------------------- /web/src/components/inventory/HotInventory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/HotInventory.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/HotInventoryGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/HotInventoryGrid.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/InventoryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/InventoryContext.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/InventoryControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/InventoryControl.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/InventoryGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/InventoryGrid.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/InventoryHotbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/InventoryHotbar.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/InventorySlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/InventorySlot.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/LeftInventory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/LeftInventory.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/RightInventory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/RightInventory.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/SlotTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/SlotTooltip.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/UsefulControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/UsefulControls.tsx -------------------------------------------------------------------------------- /web/src/components/inventory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/inventory/index.tsx -------------------------------------------------------------------------------- /web/src/components/utils/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/Divider.tsx -------------------------------------------------------------------------------- /web/src/components/utils/DragPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/DragPreview.tsx -------------------------------------------------------------------------------- /web/src/components/utils/ItemNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/ItemNotifications.tsx -------------------------------------------------------------------------------- /web/src/components/utils/KeyPress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/KeyPress.tsx -------------------------------------------------------------------------------- /web/src/components/utils/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/Tooltip.tsx -------------------------------------------------------------------------------- /web/src/components/utils/WeightBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/WeightBar.tsx -------------------------------------------------------------------------------- /web/src/components/utils/icons/ClockIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/icons/ClockIcon.tsx -------------------------------------------------------------------------------- /web/src/components/utils/menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/menu/Menu.tsx -------------------------------------------------------------------------------- /web/src/components/utils/transitions/Fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/transitions/Fade.tsx -------------------------------------------------------------------------------- /web/src/components/utils/transitions/SlideUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/components/utils/transitions/SlideUp.tsx -------------------------------------------------------------------------------- /web/src/dnd/onBuy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/dnd/onBuy.ts -------------------------------------------------------------------------------- /web/src/dnd/onCraft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/dnd/onCraft.ts -------------------------------------------------------------------------------- /web/src/dnd/onDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/dnd/onDrop.ts -------------------------------------------------------------------------------- /web/src/dnd/onGive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/dnd/onGive.ts -------------------------------------------------------------------------------- /web/src/dnd/onUse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/dnd/onUse.ts -------------------------------------------------------------------------------- /web/src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/helpers/index.ts -------------------------------------------------------------------------------- /web/src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /web/src/hooks/useExitListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/hooks/useExitListener.ts -------------------------------------------------------------------------------- /web/src/hooks/useIntersection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/hooks/useIntersection.ts -------------------------------------------------------------------------------- /web/src/hooks/useKeyPress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/hooks/useKeyPress.ts -------------------------------------------------------------------------------- /web/src/hooks/useNuiEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/hooks/useNuiEvent.ts -------------------------------------------------------------------------------- /web/src/hooks/useQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/hooks/useQueue.ts -------------------------------------------------------------------------------- /web/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/index.scss -------------------------------------------------------------------------------- /web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/main.tsx -------------------------------------------------------------------------------- /web/src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/reducers/index.ts -------------------------------------------------------------------------------- /web/src/reducers/moveSlots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/reducers/moveSlots.ts -------------------------------------------------------------------------------- /web/src/reducers/refreshSlots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/reducers/refreshSlots.ts -------------------------------------------------------------------------------- /web/src/reducers/setupInventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/reducers/setupInventory.ts -------------------------------------------------------------------------------- /web/src/reducers/stackSlots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/reducers/stackSlots.ts -------------------------------------------------------------------------------- /web/src/reducers/swapSlots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/reducers/swapSlots.ts -------------------------------------------------------------------------------- /web/src/store/contextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/store/contextMenu.ts -------------------------------------------------------------------------------- /web/src/store/imagepath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/store/imagepath.ts -------------------------------------------------------------------------------- /web/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/store/index.ts -------------------------------------------------------------------------------- /web/src/store/inventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/store/inventory.ts -------------------------------------------------------------------------------- /web/src/store/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/store/items.ts -------------------------------------------------------------------------------- /web/src/store/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/store/locale.ts -------------------------------------------------------------------------------- /web/src/store/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/store/tooltip.ts -------------------------------------------------------------------------------- /web/src/thunks/buyItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/thunks/buyItem.ts -------------------------------------------------------------------------------- /web/src/thunks/craftItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/thunks/craftItem.ts -------------------------------------------------------------------------------- /web/src/thunks/validateItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/thunks/validateItems.ts -------------------------------------------------------------------------------- /web/src/typings/dnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/typings/dnd.ts -------------------------------------------------------------------------------- /web/src/typings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/typings/index.ts -------------------------------------------------------------------------------- /web/src/typings/inventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/typings/inventory.ts -------------------------------------------------------------------------------- /web/src/typings/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/typings/item.ts -------------------------------------------------------------------------------- /web/src/typings/slot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/typings/slot.ts -------------------------------------------------------------------------------- /web/src/typings/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/typings/state.ts -------------------------------------------------------------------------------- /web/src/utils/debugData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/utils/debugData.ts -------------------------------------------------------------------------------- /web/src/utils/fetchNui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/utils/fetchNui.ts -------------------------------------------------------------------------------- /web/src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/utils/misc.ts -------------------------------------------------------------------------------- /web/src/utils/setClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/src/utils/setClipboard.ts -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/tsconfig.node.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterLifeStudio/ox_inventory/HEAD/web/vite.config.ts --------------------------------------------------------------------------------