Item Creator FiveM [ESX/QBCORE/QBOX]

A script by micklk

No reviews yet.
Item Creator FiveM [ESX/QBCORE/QBOX] main image

Price

Unknown

Full Description

f02e8c3b-b44f-4020-ade6-3d23c308b7b7

Key Features:

  • :clapper: Animations: Add custom animations with adjustable duration and cancel options.
  • :jigsaw: Attach Props: Attach props to any bone with precise positioning.
  • :sparkles: Visual Effects: Apply stunning GTA visual effects with preview.
  • :man_walking: Walking Styles: Change player walking styles for a set duration.
  • :round_pushpin: Place Props: Place synced and networked props anywhere on the map.
  • :heart: Health & Armor: Restore health and armor values on use.
  • :hamburger: Hunger & Thirst: Increase food and drink stats effortlessly.
  • :speech_balloon: Commands: Execute custom commands automatically on item use.
  • :performing_arts: Scenarios: Trigger GTA scenarios with duration control.
  • :shirt: Clothes: Apply outfits for male and female peds easily.
  • :bell: Webhooks: Send detailed Discord notifications with screenshots.
  • :boom: Particles: Add GTA particle effects with scale options.
  • :man_superhero: Superpowers: Enable super jump, godmode, invisibility, fast run, and teleport.
  • :hourglass_flowing_sand: Restrictions: Set cooldowns, job restrictions, and usage zones.
  • :package: Inventory Support: Compatible with ox_inventory, QB-Inventory, ESX_Inventory, Quasar Inventory…
  • :earth_africa: Locales: :uk: :es: :fr: :de: :it: :portugal: :ru: :poland:

PREVIEW

YouTube Video

BUY

Tebex

DISCORD

Mic Scripts Discord

Config.lua
-- Add this on your server.cfg: add_ace identifier.discord:your_discord_id mic_items.open allow

Config = {}
Config.Framework = 'esx'        -- 'esx' or 'qbcore'
Config.InventorySystem = 'ox'   -- 'ox', 'esx', 'qb', or 'quasar'
Config.ImageRoute = 'nui://ox_inventory/web/images'  -- Define the base image path
Config.EnableScreenshot = false  -- Enable or disable screenshot functionality when Webhook is triggered
Config.ClearAnimationKey = 'X'  -- Key to clear animations and props
Config.ClearPropKey = 'X'       -- Key to clear animations and props
Config.Locale = "en"            -- Actual languages: 'en', 'es', 'fr', 'de', 'it', 'pt', 'ru', 'pl', 'tr'

-- Notification System Configuration
Config.NotificationSystem = 'qb' -- Options: 'esx', 'qb', 'custom'
Config.Notify = function(source, message, type)
    if Config.NotificationSystem == 'esx' then
        TriggerClientEvent('esx:showNotification', source, message)
    elseif Config.NotificationSystem == 'qb' then
        TriggerClientEvent('QBCore:Notify', source, message, type or 'success')
    elseif Config.NotificationSystem == 'custom' then
        -- Example: TriggerClientEvent('your_custom_notification_event', source, message, type)
    end
end


-- Status System Configuration
Config.StatusSystem = 'qb' -- Options: 'esx', 'qb', 'custom'
Config.Status = function(source, food, thirst)
    if Config.StatusSystem == 'esx' then
        if food > 0 then
            TriggerEvent('esx_status:add', 'hunger', food * 10000)
        end
        if thirst > 0 then
            TriggerEvent('esx_status:add', 'thirst', thirst * 10000)
        end
    elseif Config.StatusSystem == 'qb' then
        if food > 0 then
            TriggerServerEvent('QBCore:Server:SetMetaData', 'hunger', food)
        end
        if thirst > 0 then
            TriggerServerEvent('QBCore:Server:SetMetaData', 'thirst', thirst)
        end
    elseif Config.StatusSystem == 'custom' then
        -- Example: TriggerEvent('your_custom_status_event', food, thirst)
    end
end
SCREENSHOTS






Code is accessible Config.lua & Styles
Subscription-based No
Requirements ESX/QBCORE/QBOX
Support Yes