Logic in Verse
Verse uses logic as the type for Boolean values, which means logic only has two possible values: true and false.
Both true and false are logic literals when you use them in Verse code.
The following is an example of how to create a logic variable named TargetLocked, initialized with the logic literal false:
var TargetLocked : logic = false
var TargetLocked : logic = false
Copy full snippet(1 line long)
Logic Operations
The logic type supports query operations and comparison operations.
Query
Query expressions use the operator ? (query) and check if a logic value is true. Otherwise, the expression fails if the logic value is false.
| | |
| --- | --- |
| | # Determine whether to show the target-locked icon if a target is locked |
| | if (TargetLocked?): |
| | ShowTargetLockedIcon() |
You're reading a preview
The full reference is free for BrainDeadGuild Discord members — sign in to read it all, or open the original at the source.
Sign in with your BrainDead.TV / BrainDeadGuild Discord account for full access.