Merge pull request #4 from ezeholz/patch-1

Fix infinite loop in Nightclub Money Loop
This commit is contained in:
L7NEG
2023-07-23 19:25:26 +03:00
committed by GitHub

View File

@ -10071,8 +10071,8 @@ L7NEGML = L7NEG7:add_submenu("Nighclub Money Loop 250k/10s")
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
local isRunning = false local isRunning = false
local function safeLoop(state) local function safeLoop()
while state do while isRunning do
stats.set_int(MPX .. "CLUB_POPULARITY", 1000) stats.set_int(MPX .. "CLUB_POPULARITY", 1000)
stats.set_int(MPX .. "CLUB_PAY_TIME_LEFT", -1) stats.set_int(MPX .. "CLUB_PAY_TIME_LEFT", -1)
sleep(1.5) sleep(1.5)
@ -10098,7 +10098,7 @@ L7NEGML:add_toggle(
end, end,
function() function()
isRunning = not isRunning isRunning = not isRunning
safeLoop(isRunning) safeLoop()
end end
) )