local color1 = 0xFFC080
local event = require "lib.samp.events"
local active = false
function main()
while not isSampAvailable() do wait(100) end
sampAddChatMessage("Скрипт для диалога загружен. Для активации введите /dialog", color1)
sampRegisterChatCommand("dialog", function ()
if active == true then
sampAddChatMessage("Скрипт для диалога отключен.", color1)
active = false
else
sampAddChatMessage("Скрипт для диалога включен.", color1)
active = true
end
end)
while true do
wait(0)
end
end
function event.onShowDialog(dialogId, style, title)
if active then
if dialogId == 25012 then
sampSendDialogResponse(dialogId, 1, 6)
lua_thread.create(function ()
wait(100)
sampSendDialogResponse(25013, 1, 0)
end)
end
end
end