- Версия MoonLoader
- Другое
Скрипт переделал с автоответчика, для ловли репорта. мне просто так нравится.
Не могу переделать его на клавишу Х.
Просьба сделать на клавишу и активацию по команде /fl оставить, буду благодарен.
Не могу переделать его на клавишу Х.
Просьба сделать на клавишу и активацию по команде /fl оставить, буду благодарен.
Lua:
if not doesDirectoryExist("moonloader/config") then createDirectory("moonloader/config") end
script_author("Armadillo-CLD")
script_name("AutoAnswer")
script_description("Automatically answers questions in the chat")
local SE = require 'samp.events'
local question = {"Жалоба]"}
local answer = {"/ot", }
local started = false
function notf(text)
sampAddChatMessage('*'..text,0x63BD4E)
end
function notfi(text)
sampAddChatMessage('*'..text,0xF04245)
end
function main()
while not isSampAvailable() do wait(0) end
wait(0)
sampRegisterChatCommand("fl", startaa)
while true do
wait(0)
end
end
function SE.onServerMessage(color, text)
lua_thread.create(function()
wait(1)
if started == true then
for i=1,#question do
if string.match(text, question[i]) then
wait(0)
sampSendChat(answer[i])
break
end
end
return
end
end)
end
function startaa()
if started == true then
started = false
notfi(" {999999}Выключено.", -1)
else
started = true
notf(" {FFFFFF}Включено.", -1)
end
end