- Версия MoonLoader
- .026-beta
код:
script_name('lover')
script_author('lapok')
require('moonloader')
local sampev = require 'lib.samp.events'
local hotkey = VK_1
local searchEnabled = false
local otSent = false
function main()
while true do
wait(0)
if isKeyJustPressed(hotkey) and not sampIsChatInputActive() and not sampIsDialogActive() and not isSampfuncsConsoleActive() then
searchEnabled = not searchEnabled
if searchEnabled then
sampAddChatMessage("[lover on]", 0x00ff00)
else
sampAddChatMessage("[lover off]", 0xff0000)
end
otSent = false
end
end
end
function sampev.onServerMessage(color, text)
if searchEnabled and text:find('[Репорт]') then
if not otSent then
sampSendChat('/ot')
otSent = true
end
otSent = false
end
return true
end
также помимо строчек в чате содержащих [Репорт] скрипт иногда срабатывает и на другие строчки чата, как это фиксить?
Последнее редактирование: