- 8
- 0
- Версия MoonLoader
- Другое
После того, как я установил этот тайм-аут, чтобы сценарий не работал, команда /k3tw больше не работает.
Lua:
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
local stopTime os.time{year=2023, month=10, day=23, hour=18, min=0, sec=0}
sampRegisterChatCommand('K3tw', function()
one1.v = not one1.v
end)
while true do
Wait(1000)
imgui.Process = false
one1.v = false
one2.v = false
local currentTime = os.time()
if currentTime >= stopTime then
sampAddChatMessage('Seu tempo expirou em ' .. os.date('%d/%m/%Y %H:%M:%S', currentTime), -1)
return
end
end
end