10 lines
305 B
Plaintext
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() |