- Версия MoonLoader
- .026-beta
После добавления функции function sampev.onShowDialog скрипт перестал работать, помогите.
Код:
require "lib.moonloader"
local se = require "lib.samp.events"
function main()
while true do
wait(0)
if isKeyJustPressed(0x06) then -- Продать
sampSendChat('/sellprods')
end
function sampev.onShowDialog(dialogId, style, title, button1, button2, text)
if title:find('Договор поставки', 1, true) then
sampCloseCurrentDialogWithButton(1)
end
end
end