- 140
- 13
- Версия MoonLoader
- .026-beta
Как сделать, чтоб при выборе в 1-ом диалоге пункта "Неподчинение", открывалось другое диалоговое окно и там уже можно было выбирать нужный пункт, и он выполнялся? Нашел какой то код, попытался переделать, но при нажатии в 1-ом диалоге на пункт "что" открывается другое диалоговое окно и сразу кидается сообщение " ааааааааааааааааа ", хотя оно должно кидаться в зависимости от выбора во 2-ом диалоге
Lua:
require "lib.moonloader"
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand("sum", sushka)
sampAddChatMessage("Loaded", -1)
while true do
wait(0)
local result, button, list, input = sampHasDialogRespond(1999)
if result then
if button == 1 and list == 0 then
lua_thread.create(function()
sampShowDialog(1999, "{0000ff}Helper", string.format("{FFFFFF}1. да\nнет"), "Выбрать", "Отмена", 2)
if button == 1 and list == 0 then
sampSendChat('ааааааааааааааааа')
end
end)
end
if button == 1 and list == 1 then
lua_thread.create(function()
end)
end
if button == 1 and list == 2 then
lua_thread.create(function()
end)
end
if button == 1 and list == 3 then
lua_thread.create(function()
end)
end
if button == 1 and list == 4 then
lua_thread.create(function()
end)
end
if button == 1 and list == 5 then
lua_thread.create(function()
end)
end
if button == 1 and list == 6 then
lua_thread.create(function()
end)
end
if button == 1 and list == 7 then
lua_thread.create(function()
end)
end
if button == 1 and list == 8 then
lua_thread.create(function()
end)
end
if button == 1 and list == 9 then
lua_thread.create(function()
end)
end
if button == 1 and list == 10 then
lua_thread.create(function()
end)
end
if button == 0 then
sampCloseCurrentDialogWithButton(0)
end
end
end
end
function sushka()
sampShowDialog(1999, "{0000ff}Helper", string.format("{FFFFFF}1. что\nИ так далее"), "Выбрать", "Отмена", 2)
end