Commands let players perform actions and customize gameplay using text-based instructions. Use this topic to share feedback and ideas for improving commands and related tools.

2

Command Block Comparator Output Proportional to Limit Set

1 Comments

Post a new comment:

Please sign in to leave a comment.

Sorted by oldest
  • 0
    Registered User commented
    Comment actions Permalink

    Commands and redstone are known not to go together well. If you are using comparators to measure signal strength as part of your command contraption, don't! A better way is to use scoreboards instead, unless your comparator ties into a redstone contraption instead of activating more commands.

    Scoreboards have a maximum of 2,147,483,647 rather than the maximum of 15 for redstone. You could do something like this:

    execute store result score FakePlayer myObjective if entity @e[type=squid]

    and then do operations based off of that scoreboard value.