Toggle.v: Difference between revisions
From Sierra Wiki
Jump to navigationJump to search
m 1 revision imported |
m 2 revisions imported |
(One intermediate revision by the same user not shown) | |
(No difference)
|
Latest revision as of 17:15, 16 February 2025
The toggle.v command toggles a flag's value indirectly.
Syntax
toggle.v(var vA);
Remarks
Toggles flag fB (from FALSE to TRUE or TRUE to FALSE), where B is the value of vA.
Possible Errors
Changing values of reserved flags can have unpredictable results, and should be done carefully.
Example
Code:
v50 = 99;
set.v(v50); [ f99 is now TRUE
toggle.v(v50); [ f99 is now FALSE
Technical Information
Required Interpreter Version: | Available in all AGI versions. |
Byte-Code Value: | 17 (0x11 hex) |