{"id":183547,"date":"2025-04-07T15:59:37","date_gmt":"2025-04-07T13:59:37","guid":{"rendered":"https:\/\/fivemx.com\/?p=183547"},"modified":"2026-07-26T08:03:24","modified_gmt":"2026-07-26T06:03:24","slug":"sistema-de-bolsas-de-pruebas","status":"publish","type":"fivemx_free_resource","link":"https:\/\/fivemx.com\/es\/gratis-2\/sistema-de-bolsas-de-pruebas\/","title":{"rendered":"Sistema de bolsas de evidencia"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong>Evidence Bag System for Police RP: dp-evidencebag Script for FiveM<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Want to make crime scene investigations on your FiveM server feel more real? Check out <strong>dp-evidencebag<\/strong> by Dzejkop! This script adds proper evidence bags for your police officers, working perfectly with the popular <strong>ox_inventory<\/strong>. Stop just picking things up \u2013 bag and tag items in a cleaner police roleplay flow.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\"><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Where it fits in a GTA RP server:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Real Evidence <a class=\"wpil_keyword_link\" href=\"https:\/\/fivemx.com\/how-to-change-vehicle-handling\/\" title=\"FiveM Vehicle Handling Editor \u2013 Customize Car Physics | F\u2026\" data-wpil-keyword-link=\"linked\" data-wpil-monitor-id=\"1847\">Handling<\/a>:<\/strong> Officers can collect items at a scene and store them securely in special bags.<\/li>\n\n\n\n<li><strong>Unique Bag Inventories:<\/strong> Each evidence bag acts like its own container, keeping items separate and organized. No more mixing evidence!<\/li>\n\n\n\n<li><strong>Track Everything:<\/strong> Every bag gets a unique serial number. works for realistic tracking from the crime scene to the evidence locker or lab.<\/li>\n\n\n\n<li><strong>Made for ox_inventory:<\/strong> Built to work smoothly with <code>ox_inventory<\/code>, a staple on many servers.<\/li>\n\n\n\n<li><strong>RP Focused:<\/strong> Includes animations for opening bags and a clean interface that doesn&#8217;t break immersion.<\/li>\n\n\n\n<li><strong>Easy Setup:<\/strong> Simple configuration and installation.<\/li>\n\n\n\n<li><strong>Multiple Languages:<\/strong> Ready for English and Czech servers, and you can easily add more.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>See it in Action:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<div class=\"video-container\"><iframe title=\"How to Use dp-evidencebag | Evidence Bag Script for FiveM\" width=\"1170\" height=\"658\" src=\"https:\/\/www.youtube.com\/embed\/FdmaSMTKK5g?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/div>\n<\/div><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Key Features:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Secure, separate inventory for each bag.<\/li>\n\n\n\n<li>Unique serial number for every evidence bag created.<\/li>\n\n\n\n<li>Works great with <code>ox_inventory<\/code>.<\/li>\n\n\n\n<li>Simple UI with progress bars and notifications.<\/li>\n\n\n\n<li>Animations for opening bags.<\/li>\n\n\n\n<li>Easy config for slots, weight, item name, and language.<\/li>\n\n\n\n<li>Supports English (<code>en<\/code>) and Czech (<code>cs<\/code>) out of the box.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What You Need:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>ox_inventory:<\/strong> This script is built for it.<\/li>\n\n\n\n<li><strong>ox_lib:<\/strong> A common library dependency.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Quick Install Guide:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Download <code>dp-evidencebag<\/code> from the GitHub link above.<\/li>\n\n\n\n<li>Put the <code>dp-evidencebag<\/code> folder into your server&#8217;s <code>resources<\/code> directory.<\/li>\n\n\n\n<li>Add this item to your <code>ox_inventory\/data\/items.lua<\/code>:<br><code>lua ['paperbag'] = { -- You can change 'paperbag' if you want label = 'Evidence Bag', weight = 100, stack = true, -- Can players carry multiple empty bags? close = true, description = 'Used to collect and preserve evidence.', -- Make sure you have a paperbag.png in your inventory images folder! image = 'paperbag.png', useable = true, client = { export = 'dp-evidencebag.openEvidenceBag' } },<\/code><\/li>\n\n\n\n<li>Make sure you have an image named <code>paperbag.png<\/code> (or whatever you use) in your <code>ox_inventory\/web\/images<\/code> folder.<\/li>\n\n\n\n<li>Add <code>ensure dp-evidencebag<\/code> to your <code>server.cfg<\/code>.<\/li>\n\n\n\n<li>Restart your FiveM server.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Easy Configuration (<code>config.lua<\/code>):<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Config = {}\n\n-- Make sure this matches the item name in ox_inventory\nConfig.EvidenceBagItem = 'paperbag' \n\n-- How much can each bag hold?\nConfig.EvidenceBagStorage = {\n slots = 30, -- Number of different item slots\n weight = 34000 -- Max weight in grams (like ox_inventory uses)\n}\n\n-- Set your language ('en' or 'cs', or add your own)\nConfig.Language = 'en' \n\n-- Set to true if you need to debug issues\nConfig.DebugMode = false <\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>How LEOs Use It in RP:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Get the <code>paperbag<\/code> item (or whatever you named it) &#8211; maybe from the police station armoury.<\/li>\n\n\n\n<li>Use the item from your inventory (&#8216;F5&#8217; or your inventory key).<\/li>\n\n\n\n<li>The evidence bag inventory opens up.<\/li>\n\n\n\n<li>Drag items found at the crime scene from your personal inventory <em>into<\/em> the evidence bag&#8217;s inventory window.<\/li>\n\n\n\n<li>Note the unique serial number on the bag for your reports!<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Ready to add more depth to your police investigations? Grab <strong>dp-evidencebag<\/strong> and Improve server roleplay today!<\/p>\n\n\n<!-- fivemx-blog-rework-wave3-2026-07-05 -->\n<h2>Use cases and dependencies<\/h2>\n<p>The useful part of an evidence-bag system is separation. A police scene may produce weapons, items, or contraband that should not be mixed with normal player inventory. A bag-per-case flow helps officers move evidence from the scene to storage while keeping serial numbers and contents readable.<\/p>\n<p>This resource is not a full police framework by itself. Treat it as an add-on for servers already using ox_inventory and ox_lib. Test item names, inventory permissions, bag weight, and storage rules before letting officers use it on live investigations.<\/p>\n<p>Official reference:<\/p>\n<ul>\n<li><a href=\"https:\/\/overextended.dev\/ox_inventory\" rel=\"nofollow noopener\" target=\"_blank\">ox_inventory documentation<\/a><\/li>\n<\/ul>\n<p>Related FiveMX paths:<\/p>\n<ul>\n<li><a href=\"https:\/\/fivemx.com\/police-scripts\/\">FiveM police scripts<\/a><\/li>\n<li><a href=\"https:\/\/fivemx.com\/\">FiveM scripts<\/a><\/li>\n<li><a href=\"https:\/\/fivemx.com\/qbcore-scripts\/\">QBCore scripts<\/a><\/li>\n<\/ul>\n<!-- \/fivemx-blog-rework-wave3-2026-07-05 -->","protected":false},"excerpt":{"rendered":"<p>Sistema de Bolsa de Pruebas para la Polic\u00eda RP: script dp-evidencebag para FiveM.<\/p>","protected":false},"featured_media":183548,"template":"","meta":{"footnotes":""},"categories":[2297,2298],"tags":[3001,2928,3000,2857],"free-resource-types":[3069],"free-resource-frameworks":[3071],"class_list":["post-183547","fivemx_free_resource","type-fivemx_free_resource","status-publish","has-post-thumbnail","hentry","category-free","category-scripts","tag-fivem-script","tag-free","tag-free-script","tag-police","fivemx_free_resource_type-script","fivemx_free_resource_framework-qbcore"],"_links":{"self":[{"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/free-resources\/183547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/free-resources"}],"about":[{"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/types\/fivemx_free_resource"}],"version-history":[{"count":6,"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/free-resources\/183547\/revisions"}],"predecessor-version":[{"id":214649,"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/free-resources\/183547\/revisions\/214649"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/media\/183548"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/media?parent=183547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/categories?post=183547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/tags?post=183547"},{"taxonomy":"fivemx_free_resource_type","embeddable":true,"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/free-resource-types?post=183547"},{"taxonomy":"fivemx_free_resource_framework","embeddable":true,"href":"https:\/\/fivemx.com\/es\/wp-json\/wp\/v2\/free-resource-frameworks?post=183547"}],"curies":[{"name":"gracias","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}