vladikhoriibeenhere = require 'samp.events'
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('Horii2', function() act = not act end) -- 'Добавь if act then если хочешь сделать активацию по команде'
while true do wait(0)
if question1 and isKeyJustPressed(0x60) then
sampSetChatInputText("/pm "..question1.." ") -- 'Написать в строку чата текст'
sampSetChatInputEnabled(true) -- 'Открыть чат'
end
if question2 and isKeyJustPressed(0x61) then
sampSetChatInputText("/reply "..question2.." Приятной игры. ;3")
sampSetChatInputEnabled(true)
if sampIsChatInputActive() then
for k = 0,17 do -- 'Цикл'
setVirtualKeyDown(0x10, true) -- 'Это переходим на 17 назад'
setVirtualKeyDown(0x25, true)
setVirtualKeyDown(0x25, false)
setVirtualKeyDown(0x10, false)
end
end
end
end
end
function vladikhoriibeenhere.onServerMessage(color, message) -- 'Ловим строку'
if message:find("» ПМ от") then -- 'Если строка ... то '
question1 = string.match(message,"» ПМ от (%S+)%(") -- 'Берем ник и записываем в переменную'
end
if message:find("** Вопрос от") then -- 'Если строка ... то '
question2 = string.match(message,"** Вопрос от (%S+)%[") -- 'Берем ник и записываем в переменную'
end
end