Tile - Loop While – Ylands

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 11: Line 11:
----
----
{{Ylands scripting navbox}}
{{Ylands scripting navbox}}
{{DEFAULTSORT:{{#sub:{{PAGENAME}}|14}}}}


[[Category: Instructions]]
[[Category: Ylands 0.10]]
[[Category: Ylands 0.10]]
[[Category: Instructions]]

Revision as of 14:49, 3 January 2019

Ylands Tile - While.png

  • While loop will execute selected instruction sequence as long as a specified condition is true.
  • Its crucial to set correct escape condition, otherwise the loop will continue indefinitely and will impact script performance.
  • Alternatively, it is possible to use break instruction to jump out of the loop.

Notes

  • There is internal limit to all loops to break out after one milion iterations.
  • See also: Break / Continue.



Template:Ylands scripting navbox