local sampev = require "samp.events"
require "lib.moonloader"
local keys = require "vkeys"
local sampev = require('lib.samp.events')
local script_state = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(2000) end
sampAddChatMessage("[AutoGOTP]: Activated", 0xFFFFFF)
end
function sampev.onServerMessage(color, text)
if string.find(text, "[Начало Мероприятия]", 1, true) then
sampSendChat("/gotp")
function sampev.onShowDialog(DialogId, style, title, button1, button2, text)
if title:find('Предупреждение') and text:find('По правилам мероприятия Ваше оружие будет изъято')then
lua_thread.create(function()
setVirtualKeyDown(VK_RETURN, true)
wait(100)
setVirtualKeyDown(VK_RETURN, false)
end)
end
end
end
end