Welcome to FiveDumper

Your premium FiveM dumping solution

Features

Discover the powerful features that make FiveDumper the ultimate resource dumper

No Downloads

No downloads needed for our tool work. Everything runs directly in your browser.

File Manager

Detailed searching and viewing of all resources and code in the dump.

Location Finder

Find all the locations in the dump with a click of a button.

24/7 Support

Get help anytime with 24/7 support.

Interactive File Manager

client.lua
shared.lua
config.lua
fxmanifest.lua
-- Client-side script
local QBCore = exports['qb-core']:GetCoreObject()
local PlayerData = {}
local isLoggedIn = false

RegisterNetEvent('QBCore:Client:OnPlayerLoaded', function()
    PlayerData = QBCore.Functions.GetPlayerData()
    isLoggedIn = true
end)

RegisterNetEvent('QBCore:Client:OnPlayerUnload', function()
    PlayerData = {}
    isLoggedIn = false
end)

RegisterNetEvent('QBCore:Player:SetPlayerData', function(val)
    PlayerData = val
end)

-- Main thread for location checks
CreateThread(function()
    while true do
        Wait(1000)
        if isLoggedIn then
            local ped = PlayerPedId()
            local coords = GetEntityCoords(ped)
            
            if Config.Locations.DrugLab then
                local distance = #(coords - Config.Locations.DrugLab)
                if distance < 5.0 then
                    if IsControlJustPressed(0, 38) then
                        TriggerServerEvent('fivedumper:server:accessDrugLab')
                    end
                end
            end
        end
    end
end)

function DrawText3D(x, y, z, text)
    local onScreen, _x, _y = World3dToScreen2d(x, y, z)
    if onScreen then
        SetTextScale(0.35, 0.35)
        SetTextFont(4)
        SetTextProportional(1)
        SetTextColour(255, 255, 255, 215)
        SetTextEntry("STRING")
        SetTextCentre(1)
        AddTextComponentString(text)
        DrawText(_x, _y)
    end
end
-- Shared utilities
FiveDumper = {}
FiveDumper.Utils = {}

function FiveDumper.Utils.GetDistance(coords1, coords2)
    return #(coords1 - coords2)
end

function FiveDumper.Utils.IsNearLocation(playerCoords, location, maxDistance)
    local distance = FiveDumper.Utils.GetDistance(playerCoords, location)
    return distance <= maxDistance
end

function FiveDumper.Utils.FormatTime(seconds)
    local hours = math.floor(seconds / 3600)
    local minutes = math.floor((seconds % 3600) / 60)
    local secs = seconds % 60
    return string.format("%02d:%02d:%02d", hours, minutes, secs)
end

function FiveDumper.Utils.HasItem(source, item, amount)
    local QBCore = exports['qb-core']:GetCoreObject()
    local Player = QBCore.Functions.GetPlayer(source)
    if not Player then return false end
    local itemData = Player.Functions.GetItemByName(item)
    if itemData and itemData.amount >= (amount or 1) then
        return true
    end
    return false
end

function FiveDumper.Utils.DebugPrint(message)
    if Config.Debug then
        print('^3[FiveDumper Debug]^7 ' .. message)
    end
end
-- Configuration file
Config = {}

Config.Debug = false
Config.Locale = 'en'

-- Locations
Config.Locations = {
    DrugLab = vector3(2433.45, 4968.92, 46.81)
}

-- Drug Lab Settings
Config.DrugLab = {
    ProcessingTime = 5000, -- 5 seconds
    RequiredItems = {
        ['coke_brick'] = {
            amount = 1,
            receive = 'coke',
            receiveAmount = 10
        }
    },
    Blip = {
        sprite = 514,
        scale = 0.8,
        color = 1,
        name = "Drug Lab"
    }
}

-- Job Restrictions
Config.RestrictedJobs = {
    ['police'] = true,
    ['sheriff'] = true
}
fx_version 'cerulean'
game 'gta5'

author 'FiveDumper'
description 'Advanced FiveM resource with drug lab system'
version '1.0.0'

shared_scripts {
    '@qb-core/shared/locale.lua',
    'config.lua',
    'shared.lua'
}

client_scripts {
    'client.lua'
}

server_scripts {
    'main.lua'
}

dependencies {
    'qb-core'
}

lua54 'yes'

Token Pricing

DumpToken Pricing, pick the one that suits your needs. Each FULL dump costs 20 tokens to perform.

20 Tokens

$9.99

Perfect for getting started

  • No Downloads
  • File Manager
  • Location Finder
  • 24/7 Support

60 Tokens

$24.99

Perfect for getting started

  • No Downloads
  • File Manager
  • Location Finder
  • 24/7 Support

100 Tokens

$39.99

Great value for regular users

  • No Downloads
  • File Manager
  • Location Finder
  • 24/7 Support

140 Tokens

$54.99

Best for power users

  • No Downloads
  • File Manager
  • Location Finder
  • 24/7 Support

Frequently Asked Questions

Got questions? We've got answers.

Does FiveDumper work on every browser?

FiveDumper is designed to work with most popular executors. We regularly update compatibility to ensure the best experience across different platforms.

How often are updates released?

We release regular updates to ensure security, add new features, and maintain compatibility. Updates are typically released weekly or as needed for critical security patches.

Can I upgrade my plan later?

Yes! You can upgrade your plan at any time from your dashboard. Your billing will be prorated based on your current subscription period.

What payment methods are accepted?

We accept various payment methods including credit cards, PayPal, and cryptocurrency. All payments are processed securely through our trusted payment partners.

×

Login

Don't have an account? Register

×

Register

Already have an account? Login