Toggle.v: Difference between revisions

From Sierra Wiki
Jump to navigationJump to search
m 1 revision imported
 
m 1 revision imported
(No difference)

Revision as of 01:19, 3 June 2024

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)

See Also

Flag Commands