- 10
- 1
- Версия MoonLoader
- .027.0-preview
Здравствуйте, обитатели форума. Возможно ли, что при открытии окна репорта, скрипт останавливался?
хуй:
require 'lib.moonloader'
local sampev = require 'lib.samp.events'
local vkeys = require 'vkeys'
local active = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if isKeyJustPressed(0x58) and not isSampfuncsConsoleActive() and not sampIsChatInputActive() and not sampIsDialogActive() and not isPauseMenuActive() then
active = not active
printString('AutoReport: '..(active and '~g~activated' or '~r~disabled'), 1500)
end
end
end
function sampev.onServerMessage(color, text)
if text:find('%[(%W+)%] от (%w+_%w+)%[(%d+)%]:') and active then
sampSendChat('/ot')
end
end