Difference between revisions of "While"
Jump to navigation
Jump to search
imported>Rirein (Created page with "A command for Oblivion Script Extender '''Syntax:''' (nothing) While expression Evaluates an OBSE expression. If the expression is tr...") |
imported>Rirein m |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Added by [[:Category:Oblivion Script Extender|Oblivion Script Extender]] 17. | |||
'''Syntax:''' | '''Syntax:''' | ||
(nothing) While expression | (nothing) While expression | ||
Evaluates an OBSE expression. If the expression is true, the statements following it will be executed until the next [[Loop]] command, at which point control returns to the top of the loop and the expression is evaluated again. | Evaluates an [[:Category:Oblivion_Script_Extender|OBSE]] expression. If the expression is true, the statements following it will be executed until the next [[Loop]] command, at which point control returns to the top of the loop and the expression is evaluated again. | ||
==See Also== | ==See Also== | ||
Line 16: | Line 16: | ||
[[Category: Functions]] | [[Category: Functions]] | ||
[[Category: Functions (OBSE)]] | [[Category: Functions (OBSE)]] | ||
[[Category: Functions (OBSE v0017)]] | |||
[[Category: Miscellaneous Functions]] | [[Category: Miscellaneous Functions]] | ||
[[Category: Miscellaneous Functions (OBSE)]] | [[Category: Miscellaneous Functions (OBSE)]] | ||
[[Category: Flow Control Functions (OBSE)]] | [[Category: Flow Control Functions (OBSE)]] |
Latest revision as of 03:05, 25 June 2015
Added by Oblivion Script Extender 17.
Syntax:
(nothing) While expression
Evaluates an OBSE expression. If the expression is true, the statements following it will be executed until the next Loop command, at which point control returns to the top of the loop and the expression is evaluated again.