JDB-NET Medkit

JDB-NET Medkit

GBP 0.00

Video

JDB-NET Medkit is an advanced medical utility for FiveM (Qbox) designed to elevate roleplay through resource management. Unlike standard healing scripts, this system introduces a balanced economy via item degradation, ensuring medical supplies are a valuable asset that players must manage strategically.

🚑 Key Features

  • Dual-Purpose Healing: Versatile functionality allowing players to patch their own wounds or provide life-saving first aid to others in the field.
  • Durability System: Each use intelligently reduces the item's durability by 10%. This prevents "infinite healing" and drives the server economy by requiring players to restock or craft new kits.
  • Emergency Self-Revive: In dire situations with no medics nearby, players can use the /usemedkit command while in a "downed" state to revive themselves at the cost of item durability.
  • Strategic Gameplay: Designed for semi-serious to hardcore RP environments where tactical decisions and resource scarcity are central to the experience.
  • Synchronised Performance: Built for the modern Qbox/Ox ecosystem with smooth animations and reliable state syncing between players.

⚙️ Technical Specifications

  • Framework: Qbox
  • Command: /usemedkit
  • Durability Logic: Precise 10% reduction per successful interaction (10 uses per kit).
  • Targeting: Full support for player-to-player interactions.

📦 Dependencies

  • qbx_core
  • ox_inventory
  • ox_lib

🚀 Quick Start

  1. Assets: Copy the image from img/medkit.png into ox_inventory/web/build/images.
  2. Item Registration: Add the medkit to ox_inventory/data/items.lua. Ensure the export matches your resource folder name (e.g. jdbnet-medkit):
['medkit'] = {
    label = 'Medkit',
    weight = 350,
    stack = false,
    consume = 0.1,
    close = true,
    client = {
        export = 'jdbnet-medkit.useMedkit',
        image = 'medkit.png',
    },
    server = {
        export = 'jdbnet-medkit.medkitCallback',
    },
},