local key = require "vkeys"
local sampev = require 'samp.events'
require 'lib.moonloader'
function msg(arg)
sampAddChatMessage("{610B0B}[B0MB3R]: {FFFFFF}"..arg,-1)
end
local texti = ""
local rabotaem = false
function main()
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("bombertext", function(arg)
if arg == "" then
msg("Введите текст!")
else
texti = arg
msg("Ваш Текст: "..texti)
end
end)
sampRegisterChatCommand("bomberstart", function()
if rabotaem then
msg("Уже работает! Нажмите M!")
else
if texti == "" then
msg("/bombertext [ТЕКСТ]!")
else
msg("Начато, чтобы завершить - нажмите M")
rabotaem = true
end
end
end)
while true do
wait(0)
if rabotaem then
if isKeyJustPressed(VK_M) then
rabotaem = false
msg("Выключено!")
end
end
end
end
function sampev.onShowDialog(id, style, title, button1, button2, text)
if rabotaem then
if id == 955 then
sampSendDialogResponse(955, 1, nil, texti)
return false
end
end
end