Profile
- Name
- Endless Squash v0.1
- ID
- 101337
- Shared with
- Public
- Parent
- None
- Children
- Created on
- August 15, 2015 at 20:17 PM UTC
- Updated on
- August 15, 2015 at 20:17 PM UTC
- Description
as requested by a player, wiggles 10 iterations at ci 1, then 10 at ci 0, repeats endlessly. Starting position saved in slot 3.
Best for
Code
-- Wiggles 10 iterations at ci 1, 10 at ci 0, repeats endlessly.
-- Starting position saved in slot 3.
save.Quicksave(3)
while true do
behavior.SetClashImportance(1)
structure.WiggleAll(10)
behavior.SetClashImportance(0)
structure.WiggleAll(10)
end