- 211
- 12
- Версия MoonLoader
- .026-beta
Как сделать в диалоге например я нажимаю Выбрать значения On ищё раз Выбрать значения off если я нажал и сохранялось в ини кфг
Lua:
local mainIni = inicfg.load({
config =
{
dia = 'true'
}
}, 'dialog.ini')
if not doesFileExist('moonloader/config/dialog.ini') then inicfg.save(mainIni,'dialog.ini') end
local result, button, list, input = sampHasDialogRespond(20)
if result then
if button == 1 then
sampShowDialog(21,'start','123\nПривет\nПока\nУзнать свой ник-ид','Выбрать','Закрыть', 2)
sampAddChatMessage('Вы нажали выбрать', -1)
else
sampAddChatMessage('Вы нажали закрыть', -1)
end
end
local result, button, list, input = sampHasDialogRespond(21)
if result then
if button == 1 then
if list == 2 then
sampAddChatMessage('Ты вообще красава', -1)
end
if list == 3 then
sampShowDialog(22,'3 ди','3 ди','Выбрать','Назад', 0)
end
if list == 2 then
sampShowDialog(25,'{DEB887}start','123\t'..mainIni.config.dia,'Выбрать', 'Закрыть', 2)
end
end
end
end
end
function cmd_dia()
if sampShowDialog(20,'{DEB887}start','123','Выбрать', 'Закрыть', 0) then
if sampShowDialog(21,'start','123\nПривет\nПока\nУзнать свой ник-ид','Выбрать','Закрыть', 2) then
end
end