Quest Editor
  • Docs Home
  • Guides
    • Creating a Quest
      • Storywriting
      • Starting Out
      • Adding Stages
      • Stage 1
      • Stage 2
      • Stage 3
    • Creating an Enemy
    • Creating a Location
      • Creation
  • Logic Blocks
    • If Block
    • Equals Block
    • And/Or Block
    • Not Block
    • Boolean Block
    • Null Block
    • Ternary Block
  • List Blocks
    • Create Empty List Block
    • Length Of List Block
    • Create List Block
    • Find Index Block
    • Is Empty Block
    • Get In List Block
    • Edit In List Block
    • Split String Block
  • Text Blocks
    • Text Block
  • Quest Blocks
    • Quest Block
    • Continue Check Block
    • Dialog Block
    • Take Item Block
    • Has Item Block
    • Option Block
    • Option Dialog Block
    • Promise Block
    • Stage Block
    • Switch Stage Block
    • Update Quest Block
    • End Quest Block
    • Start Quest Block
    • Send Message Block
    • User Inventory Block
    • NPC Block
    • Set Adventure Block
    • Remove Adventure Block
    • New Adventure Class Block
  • Item Blocks
    • Dummy Item Block
    • Weapon Item Block
    • Healing Item Block
    • Helmet Item Block
    • Chestplate Item Block
    • Boots Item Block
    • Ring Item Block
  • Import Blocks
    • Import Adventure Block
  • Enemy Blocks
    • New Enemy Block
  • Locations Blocks
    • New Location Block
    • Search Data Block
    • Travel Data Block
Powered by GitBook
On this page
  • Equals Block
  • Generated Code
  • Not Equals Block
  • Generated Code
  • Less Than Block
  • Generated Code
  • More Than Block
  • Generated Code
  • Less Than or Equal Block
  • Generated Code
  • More Than or Equal Block
  • Generated Code
  1. Logic Blocks

Equals Block

PreviousIf BlockNextAnd/Or Block

Last updated 6 years ago

Equals Block

The equals block returns true if both inputs are equal.

To specify the blocks comparison type, use the dropdown in the center of the block.

Generated Code

=

input1 == input2;

Not Equals Block

The not equals block returns true if both inputs aren't equal.

Generated Code

≠

input1 != input2;

Less Than Block

The less than block returns true if the first input is less than the second input.

Generated Code

<

input1 < input2;

More Than Block

The more than block returns true if the first input is more than the second input.

Generated Code

>

input1 > input2;

Less Than or Equal Block

The less than or equal block returns true if the first input is less than or equal to the second input.

Generated Code

≤

input1 <= input2;

More Than or Equal Block

The less than or equal block returns true if the first input is more than or equal to the second input.

Generated Code

≥

input1 >= input2;
Equals Block
Not Equals Block
Less Than Block
More Than Block
Less Than or Equal Block
More Than or Equal Block