- 28
- 4
- Версия MoonLoader
- .026-beta
123:
function sampev.onShowDialog(id, style, title, button1, button2, text)
if mode == 3 and #myBuyArray > 0 then
for i, data in ipairs(myBuyArray) do
if mode == 3 and text:find('Удалить товар с продажи') and text:find('Прекратить покупку товара') and #myBuyArray > 0 then
lua_thread.create(function ()
wait(tw)
sampSendDialogResponse(id, 1, getLineOnTextDialog(text, 'Добавить товар на покупку %(поиск по предметам%)'), nil)
end)
end
if mode == 3 and text:find('Введите наименование товара, который хотите найти и выставить на скупку.') and #myBuyArray > 0 then
lua_thread.create(function ()
wait(tw)
sampSendDialogResponse(id, 1, nil, data[1])
end)
end
if mode == 3 and title:find('Поиск товара') and not text:find('Введите наименование товара, который хотите найти и выставить на скупку.') and #myBuyArray > 0 then
lua_thread.create(function ()
wait(tw)
local text = text:gsub('{......}', '')
local text = text:gsub('%d.','')
sampSendDialogResponse(id, 1, 0, nil)
end)
end
if mode == 3 and text:find('Введите цену за товар') then
lua_thread.create(function ()
wait(tw)
sampSendDialogResponse(id, 1, nil, data[3])
end)
end
if mode == 3 and text:find('Введите количество и цену за один товар') then
lua_thread.create(function ()
wait(tw)
sampSendDialogResponse(id, 1, nil, data[2]..','..data[3])
end)
end
end
end
end