- 8
- 2
- Версия MoonLoader
- .026-beta
Всем привет, недавно начал изучать луа, пожалуйста, добавьте или напишите в коде так, чтобы он активировался только тогда, когда есть команда и id человека, к примеру /spr 12, заранее спасибо
луа:
require "lib.moonloader"
require "lib.sampfuncs"
local activate = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("spr", function() activate = not activate end)
while true do
wait(0)
if activate == true then
lua_thread.create(function()
sampSendChat("/sprunk")
wait(300000)
end)
end
end
end