openwf/Scripts/samples/No Ability Cooldowns.pluto
2025-10-06 18:27:00 +08:00

10 lines
305 B
Plaintext

-- Modifications to sample scripts will be lost the next time you start the game.
repeat
if suit := gRegion:GetLocalPlayerAvatar():InventoryControl():GetActivePowerSuit() then
for i = 0, 3 do
if ability := suit:GetAbilityByIndex(i) then
ability:SetCooldownTime(0)
end
end
end
until yield()