- 22
- 1
- Версия SA-MP
-
- Любая
Прописываю /tram, ничего не происходит, при этом сам скрипт работает.
Скрипт:
Скрипт:
lua:
require('lib.moonloader')
local sampev = require 'lib.samp.events'
local flag = false
local active = false
function main()
repeat wait(100) until isSampAvailable()
sampRegisterChatCommand('tram', function()
active = not active
sampAddChatMessage(active and 'Active' or 'DeActivated', -1)
end)
while true do
wait(0)
if wasKeyPressed(VK_N) and not sampIsCursorActive() then
flag = not flag
sampAddChatMessage(flag and 'Ловлер вопросов включен.' or 'Ловлер вопросов выключен.', 0x8c00ff)
end
end
end
function sampev.onServerMessage(color, text)
lua_thread.create(function()
if flag then
if not sampIsCursorActive() and string.find(text, '[Вопрос]', 0, true) then
wait(2)
sampSendChat('/ans')
end
end
end
)
end
Последнее редактирование: