- Версия MoonLoader
- Другое
В хелпере есть функция авто открытия сундуков с рулетками тайниками, после второй попытки открытия открывается статистика и игра крашится.
Помогите пофиксить пожалуйста.
Код с функциями открытия:
Помогите пофиксить пожалуйста.
Код с функциями открытия:
Lua:
function box_open_now()
lua_thread.create(function()
math.randomseed(os.time())
local do_delay = box_do_delay.v * 1000
sampCloseCurrentDialogWithButton(0)
sampSendClickTextdraw(65535)
if box_toggle.v then
sampProcessChatInput("/stats")
wait(do_delay)
sampCloseCurrentDialogWithButton(0)
wait(do_delay)
sampSendClickTextdraw(65535)
wait(do_delay)
sampProcessChatInput("/invent")
wait(do_delay)
if box_donate.v then
sampSendClickTextdraw(box_donate_tid)
wait(do_delay)
sampSendClickTextdraw(2302)
wait(do_delay)
end
if box_elonmusk.v then
sampSendClickTextdraw(box_elonmusk_tid)
wait(do_delay)
sampSendClickTextdraw(2302)
wait(do_delay)
end
if box_lossantos.v then
sampSendClickTextdraw(box_lossantos_tid)
wait(do_delay)
sampSendClickTextdraw(2302)
wait(do_delay)
end
if box_platina.v then
sampSendClickTextdraw(box_platina_tid)
wait(do_delay)
sampSendClickTextdraw(2302)
wait(do_delay)
end
if box_roulette.v then
sampSendClickTextdraw(box_roulette_tid)
wait(do_delay)
sampSendClickTextdraw(2302)
wait(do_delay)
end
if box_vicecity.v then
sampSendClickTextdraw(box_vc_tid)
wait(do_delay)
sampSendClickTextdraw(2302)
wait(do_delay)
end
sampSendClickTextdraw(65535)
work = false
else
work = false
end
end)
end
function box_open()
lua_thread.create(function()
math.randomseed(os.time())
local open_delay = math.random(box_open_delay_min.v, box_open_delay_max.v) * 1000 * 60
local do_delay = box_do_delay.v * 1000
wait(open_delay)
box_open_now()
end)
end
function sampev.onShowTextDraw(id, data)
if data.modelId == 19918 then
box_roulette_tid = id
elseif data.modelId == 19613 then
box_donate_tid = id
elseif data.modelId == 1353 then
box_platina_tid = id
elseif data.modelId == 1733 then
box_elonmusk_tid = id
elseif data.modelId == 2887 then
box_lossantos_tid = id
elseif data.modelId == 1333 then
box_vc_tid = id
end
end
Последнее редактирование: