- Версия MoonLoader
- .026-beta
Нажимаю на ALT - крашет скрипт. В чем проблема ? Объясните понятным языком.
П
Lua:
require "moonloader"
local samp = require 'lib.samp.events'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(2000) end
while true do
if isKeyJustPressed(VK_MENU) and active then
active = false
sampAddChatMessage('/mute '..testId..' 15 test')
end
wait(0)
end
end
function samp.onServerMessage(color, text)
testId, msg = text:match('.+%[(%d+)%]: (.+)')
if color == -849584982 and sampIsPlayerConnected(tonumber(testId)) then
sampAddChatMessage('Чтобы выдать мут игроку нажмите "CTRL. Чтобы выдать бан игроку нажмите "ALT"', -1)
active = true
end
end