- 1,092
- 293
- Версия MoonLoader
- .026-beta
Всем здарова, не работает деактивация и активация скрипту абсолютно похуй на проверку он все равно продолжает работать даже если деактивирован.
LUA:
require 'lib.moonloader'
local sampev = require 'lib.samp.events'
local enable = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('fastot', fastot)
while true do
wait(0)
end
end
function fastot()
enable = not enable
if enable then
printString('Script activated', 1000)
function sampev.onServerMessage(color, text)
if text:find('%[(%W+)%] от (%w+_%w+)%[(%d+)%]:') then
text:match('%[(%W+)%] от (%w+_%w+)%[(%d+)%]:')
sampSendChat('/ot')
end
end
else
printString('Script deactivated', 1000)
end
end