Profile
- Name
- Endless Squash v0.14 - 1-0
- ID
- 101748
- Shared with
- Public
- Parent
- Endless Squash v0.1
- Children
- None
- Created on
- January 06, 2016 at 23:45 PM UTC
- Updated on
- January 06, 2016 at 23:45 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(1)
behavior.SetClashImportance(0)
structure.WiggleAll(1)
end