Как сделать так, чтобы диалог закрывался на Esc и Отмена
Код
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if isKeyDown(VK_MENU) and isKeyJustPressed(VK_1) then
sampShowDialog(4848,"For Army LVa","1) Здравия желаю\n2) Предъявите документы\n3) Показать удостоверение","Ок" ,"Отмена" ,2)
lua_thread.create(checker)
end
function checker()
while sampIsDialogActive() do
wait(0)
local result, button, list, input = sampHasDialogRespond(4848)
if result and list == 0 then
sampSendChat('Здравия желаю! Рядовой LVA Belicoff!')
elseif result and list == 1 then
sampSendChat('Предъявите ваши документы!')
end
end
end