Files
gta-v-chaos-mod-custom-scripts/Time/TimeFreeze.lua
2025-09-26 02:16:08 +01:00

22 lines
283 B
Lua

EffectInfo = {
Name = "Freeze Clock Time",
EffectId = "time_freezeclock",
TimedType = "Normal",
EffectGroup = "None",
EffectCategory = "None"
}
function OnStart()
end
function OnStop()
PAUSE_CLOCK(false)
end
function OnTick()
PAUSE_CLOCK(true)
end