local act = false -- в изначальном положении наш скрипт оффнут
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('activate', function()
act = not act -- переключает режим скрипта, вкл/выкл
end)
while true do
wait(0)
if act then -- если скрипт включен выполняем такое то действие
-- CODE
end
end
end