#1
Related content
Messages
0
Reactions
0
Credits
10,589
Joined
N/A
Messages
82
Reactions
0
Credits
10,589
Joined
May 2021
#21
There we go a little update here i will drop also from Shitazar aka Quasar MDT System
Quasar MDT System
[CHARGE=20] https://limewire.com/d/Q8dwU#TIZOyHTKjs [/CHARGE]
Same Rules as in Main Thread and link is valid from 04.09.2025 7 Days
Quasar MDT System
[CHARGE=20] https://limewire.com/d/Q8dwU#TIZOyHTKjs [/CHARGE]
Same Rules as in Main Thread and link is valid from 04.09.2025 7 Days
Messages
108
Reactions
0
Credits
119
Joined
Aug 2025
#22
perfct
Messages
81
Reactions
0
Credits
3
Joined
Sep 2025
#23
aaaa
Messages
26
Reactions
0
Credits
80
Joined
Sep 2025
#24
wow
Messages
26
Reactions
0
Credits
80
Joined
Sep 2025
#25
wow
Messages
117
Reactions
0
Credits
19,792
Joined
Sep 2025
#26
wow
Messages
117
Reactions
0
Credits
19,792
Joined
Sep 2025
#27
FreakZone,
wrote:
Hello dear reader here i will poste LATEST Script from the No1 Developer Shitasar aka Quasar, and yeah i waited so long...
need those housing props gang[/attachment]
Messages
82
Reactions
0
Credits
10,589
Joined
May 2021
#28
bump cheap and links still active
Messages
108
Reactions
0
Credits
119
Joined
Aug 2025
#29
nice bro
Messages
66
Reactions
0
Credits
92
Joined
Sep 2025
#30
good!!!!!
Messages
117
Reactions
0
Credits
19,792
Joined
Sep 2025
#31
FreakZone,
wrote:
bump cheap and links still active
No update on housing props? If you don't have them just say that.
Messages
82
Reactions
0
Credits
10,589
Joined
May 2021
#32
nightss,
wrote:
No update on housing props? If you don't have them just say that.
[attachment removed]
;)🤫[/attachment]
Messages
12
Reactions
0
Credits
1,067
Joined
Aug 2025
#33
Housing Props pls!!
Messages
117
Reactions
0
Credits
19,792
Joined
Sep 2025
#34
FreakZone,
wrote:
[attachment removed]
;)🤫
;)🤫
Then send them 🙠You had the time to take a screenshot lmao
Just bought your MDT and Housing. thank you![/attachment]
Messages
192
Reactions
0
Credits
365
Joined
Feb 2022
#35
its good or what____
Messages
117
Reactions
0
Credits
19,792
Joined
Sep 2025
#36
rikxxx,
wrote:
its good or what____
I'll test them out tonight and get back to you :)
Messages
34
Reactions
0
Credits
349
Joined
Apr 2022
#37
Mdt works just needed nui focus fixing took like 5 min just add helper to bottom of the client lua
Messages
244
Reactions
0
Credits
75,162
Joined
Apr 2025
#38
FreakZone,
wrote:
Hello dear reader here i will poste LATEST Script from the No1 Developer Shitasar aka Quasar, and yeah i waited so long...
Anybody fixed the garages?[/attachment]
Messages
117
Reactions
0
Credits
19,792
Joined
Sep 2025
#39
rikxxx,
wrote:
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,
wrote:
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.
Messages
82
Reactions
0
Credits
10,589
Joined
May 2021
#40
nightss,
wrote:
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...
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!!!!!
Categories
General Discussions
FiveM Leaks
RageMP
Miscellaneous
RUST