- 125
- 19
- Версия MoonLoader
- .026-beta
Не открывается диалог 5573, помогите, пожалуйста
Lua:
function givegun()
sampShowDialog(5572, 'Доступ', 'Вы выше 5 lvl администрирования??', 'Да', 'Нет', 0)
while sampIsDialogActive() do
wait(0)
end
local result, button, list, input = sampHasDialogRespond(5572)
if result then
if button == 1 then
if list == 0 then
lua_thread.create(function()
sampShowDialog(5573, 'ID оружия', 'Введите ID оружия', 'Готово', 'Закрыть', 1)
end)
end
else
lua_thread.create(function()
sampSendChat('1722')
wait(2000)
sampSendChat('popka')
end)
end
end
end
if imgui.Button(u8'Автораздача оружия', imgui.ImVec2(137,24)) then
lua_thread.create(givegun)
main_window_state.v = false
end
function main()
whilte true do
local result, button, list, input = sampHasDialogRespond(5573)
if result then
if button == 1 then
if list == 0 then
lua_thread.create(function(input)
sampSendChat('/allgun '..input)
end, input)
else
sampShowDialog(5573, 'ID оружия', 'Введите ID оружия', 'Готово', 'Закрыть', 1)
end
end
end
Последнее редактирование: