Its PAYBACK time Quasar Latest Version Smartphone PRO,VehicleKeys,Garage,MDT,Housing from Quasar the No1 in Dev team!!!!!!!!

posted 02-09-2025 20:58 15.057 views 82 replies
FreakZone
0 Posts
10,657 Credits
N/A Since
#1 15.057 views 82 replies
LINKS OFFLINE!!!!!!!!

After that the links will not be valid and dont ask for refund credits if its expired after that.
Also support for the script is not provided this shit scripts are decrypted fix it youself or leave it.


[SIZE=4][/SIZE][/attachment]
replies (20)
agabey41
108 Posts
149 Credits
Aug 2025 Since
#22
perfct
oppps
81 Posts
38 Credits
Sep 2025 Since
#23
aaaa
nightss
117 Posts
20,632 Credits
Sep 2025 Since
#26
wow
nightss
117 Posts
20,632 Credits
Sep 2025 Since
#27

FreakZone,
Hello dear reader here i will poste Script from the No1 Developer Shitasar ...

need those housing props gang[/attachment]
FreakZone
83 Posts
10,657 Credits
May 2021 Since
#28
bump cheap and links still active
agabey41
108 Posts
149 Credits
Aug 2025 Since
#29
nice bro
1103336710
66 Posts
132 Credits
Sep 2025 Since
#30
good!!!!!
nightss
117 Posts
20,632 Credits
Sep 2025 Since
#31

FreakZone,
bump cheap and links still active

No update on housing props? If you don't have them just say that.
FreakZone
83 Posts
10,657 Credits
May 2021 Since
#32

nightss,
No update on housing props? If you don't have them just say that.

[attachment removed]

;)🤫[/attachment]
Billx420
12 Posts
1,112 Credits
Aug 2025 Since
#33
Housing Props pls!!
nightss
117 Posts
20,632 Credits
Sep 2025 Since
#34

FreakZone,
[attachment removed]

;)🤫

Then send them 🙏 You had the time to take a screenshot lmao

Just bought your MDT and Housing. thank you![/attachment]
rikxxx
192 Posts
329 Credits
Feb 2022 Since
#35
its good or what____
nightss
117 Posts
20,632 Credits
Sep 2025 Since
#36

rikxxx,
its good or what____

I'll test them out tonight and get back to you :)
kravedd
34 Posts
379 Credits
Apr 2022 Since
#37
Mdt works just needed nui focus fixing took like 5 min just add helper to bottom of the client lua
dani_92569
244 Posts
76,142 Credits
Apr 2025 Since
#38

FreakZone,
Hello dear reader here i will poste Script from the No1 Developer Shitasar ...

Anybody fixed the garages?[/attachment]
nightss
117 Posts
20,632 Credits
Sep 2025 Since
#39

rikxxx,
its good or what____

Tons of errors, unusable right now.

Housing is obfuscated with errors, so it's not repairable.

Probably gonna need 20 credits back. I'm still trying to fix the MDT.


kravedd,
Mdt works just needed nui focus fixing took like 5 min just add helper to bottom of the client lua

Can you provide the fixed client.lua? It's all obfuscated and not working.

The only client.lua I could find is client > main.lua and I added this to the obfuscation without any luck:

local MDT_UI_OPEN = false
local MDT_DISABLE_THREAD = nil

local function mdt_setFocus(state)
MDT_UI_OPEN = state

-- Give/clear focus + keep input so you can still move camera if you want
SetNuiFocus(state, state)
SetNuiFocusKeepInput(state)

-- (Optional) show the built-in cursor hint
-- SetCursorLocation(0.5, 0.5)

-- Spin a control-disabling thread only while UI is open
if state and MDT_DISABLE_THREAD == nil then
MDT_DISABLE_THREAD = CreateThread(function()
while MDT_UI_OPEN do
-- Block most gameplay controls while NUI is focused
DisableControlAction(0, 1, true) -- LookLeftRight
DisableControlAction(0, 2, true) -- LookUpDown
DisableControlAction(0, 16, true) -- NextWeapon
DisableControlAction(0, 17, true) -- PrevWeapon
DisableControlAction(0, 22, true) -- Jump
DisableControlAction(0, 24, true) -- Attack
DisableControlAction(0, 25, true) -- Aim
DisableControlAction(0, 37, true) -- SelectWeapon
DisableControlAction(0, 44, true) -- Cover
DisableControlAction(0, 45, true) -- Reload
DisableControlAction(0, 75, true) -- Exit vehicle
DisableControlAction(0, 140, true) -- Melee attack light
DisableControlAction(0, 141, true) -- Melee attack heavy
DisableControlAction(0, 142, true) -- Melee alternate
DisableControlAction(0, 199, true) -- Pause/Menu
DisableControlAction(0, 200, true) -- ESC / Back
DisableControlAction(0, 257, true) -- Attack 2
DisableControlAction(0, 263, true) -- Melee
DisableControlAction(0, 264, true) -- Melee
DisableControlAction(0, 322, true) -- ESC
DisableControlAction(0, 106, true) -- Vehicle mouse control override

-- Let player close with ESC if your HTML doesn’t already send a close
if IsControlJustPressed(0, 200) or IsControlJustPressed(0, 322) then
-- Tell UI to close itself (your html/js should listen) OR just hard-close here:
SendNUIMessage({ action = "mdt:requestClose" })
-- Failsafe hard-close after 150ms in case UI doesn't respond
SetTimeout(150, function()
if MDT_UI_OPEN then
mdt_closeUI()
end
end)
end

Wait(0)
end
MDT_DISABLE_THREAD = nil
end)
end
end

function mdt_openUI(payload)
-- payload is optional; pass anything your UI needs (player/job/etc)
SendNUIMessage({ action = "mdt:open", data = payload })
mdt_setFocus(true)
end

function mdt_closeUI()
SendNUIMessage({ action = "mdt:close" })
mdt_setFocus(false)
end

-- NUI callbacks expected from your HTML/JS
-- Call `fetch('https:///mdt:ready', {method: 'POST', body: '{}'})` when UI is ready
RegisterNUICallback('mdt:ready', function(_, cb)
cb(1)
end)

-- Call this from JS when user clicks your UI close/X button
RegisterNUICallback('mdt:close', function(_, cb)
mdt_closeUI()
cb(1)
end)

-- Optional: focus on/off from JS if you need it (modals, text inputs, etc.)
RegisterNUICallback('mdt:setFocus', function(data, cb)
local state = data and data.state == true
mdt_setFocus(state)
cb(1)
end)

-- Optional: open from server or other client code
-- Example: TriggerEvent('mdt:client:open', { plate = '00ABC123' })
RegisterNetEvent('mdt:client:open', function(data)
mdt_openUI(data)
end)

RegisterNetEvent('mdt:client:close', function()
mdt_closeUI()
end)

-- Safety: if the resource stops while focused, release focus so player isn't stuck
AddEventHandler('onResourceStop', function(res)
if res == GetCurrentResourceName() and MDT_UI_OPEN then
SetNuiFocus(false, false)
SetNuiFocusKeepInput(false)
end
end)


No idea why OP is claiming any of this is open-sourced.. because it's all obfuscated with errors. Don't waste your credits here until he fixes some of it.
FreakZone
83 Posts
10,657 Credits
May 2021 Since
#40

nightss,
Tons of errors, unusable right now.

Housing is obfuscated with errors, so it's not repairable.

Probably gonna need 20 credits back. I'm st...

Im not you personal developer the code is OPEN SOURCE this is the 3 time that someone is saying that to you, also if you dont know how to fix somthign you have always the option to pay someone or recycle bin. AND IM NOT YOU PERSONAL DEVELOPER OR FIXER!!!!!

You must be logged in to reply

Login Register