Fixed Transaction Error Globals

This commit is contained in:
iSk1P 2024-12-26 15:59:06 +02:00
parent 875dca2969
commit d566697e8d
2 changed files with 3 additions and 3 deletions

View File

@ -348,7 +348,7 @@ Self:add_action("Remove Arena War Wheel Cooldown", function()
end)
Self:add_action("Remove Transaction Error", function()
for i = 4538090, 4538092 do
for i = 4538089, 4538091 do
globals.set_int(i, 0)
end
end)
@ -31681,9 +31681,9 @@ local function NightLoop1()
if globals.get_int(SafeValue) ~= 0 then
end
AMN:set_int(SafeCollection, 1)
AMN:set_int(4538089, 0)
AMN:set_int(4538090, 0)
AMN:set_int(4538091, 0)
AMN:set_int(4538092, 0)
sleep(1.2)
end
end

View File

@ -150,9 +150,9 @@ end)
RTPT = Self:add_checkbox("Remove Transaction Error")
script.register_looped("RemoveTransactionError", function(script)
if RemoveTransactionError then
globals.set_int(4538089, 0)
globals.set_int(4538090, 0)
globals.set_int(4538091, 0)
globals.set_int(4538092, 0)
end
end)