Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

luisbe_dv

Bronze Elite
Joined
Sep 24, 2025
Messages
9
Reaction score
157
Points
176
Location
Leganes
Website
discord.gg
I managed to open the script thanks to fxap decryption tools; everything — both client and server — is fully open, and it’s on its latest version as of January 12, 2025.

STANDALONE, COMPATIBLE WITH ESX AND QB

-- ORIGEN MULTICHARACTER (OLD TITLE MENU) --

LUISBE leaks -- -- LUISBE leaks

2ffed05534431ebc385b1226b5bfc7737ff9ea32.png
 

Attachments

  • origen_multicharacter.zip
    16.6 MB · Views: 555

Sam0t

Gold Elite
Joined
Feb 15, 2025
Messages
149
Reaction score
88
Points
241
Location
Portugal
I managed to open the script thanks to fxap decryption tools; everything — both client and server — is fully open, and it’s on its latest version as of January 12, 2025.

STANDALONE, COMPATIBLE WITH ESX AND QB

-- ORIGEN MULTICHARACTER (OLD TITLE MENU) --

LUISBE leaks -- -- LUISBE leaks

View attachment 42578
No way, this one is insane script! I'll be testing it soon!
 

Gogoto

Bronze Elite
Joined
Mar 5, 2024
Messages
5
Reaction score
13
Points
156
Location
Spain
BACKDOOR in custom/server/function.lua last 2 lines
 

CrashNight

Silver Elite
Joined
Sep 28, 2022
Messages
58
Reaction score
7
Points
166
Location
Spain
BACKDOOR in custom/server/function.lua last 2 lines
custom/server/function.lua:

Linea 1 - 10:

Custom = Custom or {}

function Custom.GetLastPosition(cid)
local p = promise.new()
if Config.Framework == 'qbcore' then
local result = MySQL.Sync.fetchAll('SELECT position FROM players WHERE citizenid=@citizenid', {['@citizenid'] = cid})
if result ~= nil and result[1] ~= nil then
p:resolve(json.decode(result[1].position))
else
p:resolve(nil)
end
elseif Config.Framework == 'esx' then
local result = MySQL.Sync.fetchAll('SELECT position FROM users WHERE identifier=@identifier', {['@identifier'] = cid})
if result ~= nil and result[1] ~= nil then
p:resolve(json.decode(result[1].position))
else
p:resolve(nil)
end
end
return Citizen.Await(p)
end
 
Top