require "lib.moonloader"
local sampev = require "lib.samp.events"
local active = false -- если хочешь по умолчанию включенный скрипт замени false на true
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand("autoh", function()
active = not active
end)
wait(-1)
end
function sampev.onShowDialog(id, style, title, button1, button2, text)
if title:find("Выберите еду") and active then
sampSendDialogResponse(id, 1, 6, nil)
sampCloseCurrentDialogWithButton(1)
end
end