Set scoreboard when player is standing on a half slab/execute as - Failed to execute errorMinecart ejection and deletion?How to test for the entity closest to the player?Minecraft - teleport a player when stepping on specific coordinatesMinecraft - execute command testing logic (lightning Sword)How to make a score be recorded as team?Detect when a player respawns, Possible?Minecraft command block targetingHow do you teleport a player relatively but without finishing at 0.5 on each axis?Minecraft 1.14 - Kill two random arrows when shot from a crossbow with multishot enchantment

How to handle (one's own) self-harm scars (on the arm), in a work environment?

Determining fair price for profitable mobile app business

Are polynomials with the same roots identical?

Why not invest in precious metals?

Writing an augmented sixth chord on the flattened supertonic

With Ubuntu 18.04, how can I have a hot corner that locks the computer?

Ability To Change Root User Password (Vulnerability?)

Why are MBA programs closing?

A word that means "blending into a community too much"

Generate basis elements of the Steenrod algebra

Russian word for a male zebra

Why was this person allowed to become Grand Maester?

Getting UPS Power from One Room to Another

How does the Around command at zero work?

Why am I getting a strange double quote (“) in Open Office instead of the ordinary one (")?

How can I get an unreasonable manager to approve time off?

Is using 'echo' to display attacker-controlled data on the terminal dangerous?

Why we don’t make use of the t-distribution for constructing a confidence interval for a proportion?

What ways have you found to get edits from non-LaTeX users?

How come the nude protesters were not arrested?

How to ensure color fidelity of the same file on two computers?

CSV how to trim values to 2 places in multiple columns using UNIX

How did old MS-DOS games utilize various graphic cards?

Is it legal for a bar bouncer to confiscate a fake ID



Set scoreboard when player is standing on a half slab


/execute as - Failed to execute errorMinecart ejection and deletion?How to test for the entity closest to the player?Minecraft - teleport a player when stepping on specific coordinatesMinecraft - execute command testing logic (lightning Sword)How to make a score be recorded as team?Detect when a player respawns, Possible?Minecraft command block targetingHow do you teleport a player relatively but without finishing at 0.5 on each axis?Minecraft 1.14 - Kill two random arrows when shot from a crossbow with multishot enchantment






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















have encountered an issue in my map.



So when encountering a sword in the stone, when the player stands on a particular block the scoreboard will be upticked by one, causing them to teleport. The issue I'm encountering is how finicky this command is. I'm trying to make it only go off when a player is standing on a quartz half slab at the coordinates x = 243, y=69.5, z=-41.



However, when testing, no matter where the player is located this command block will go off.



Here is the command I've been attempting to use.



 execute at @e[type=player,x=243,y=69.5,z=-41] if entity @e[type=minecraft:player,scores=silent_realm=0] if block ~ ~-0.5 ~ quartz_slab[type=bottom] run scoreboard players add @a silent_realm 1


In summary, what the command SHOULD do is execute at a player located at previously listed coordinates, if their scoreboard for the objective is equal to zero and if the block directly below them is a quartz half-slab.



Thanks in advance!









share







New contributor



Dalek_Thal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    have encountered an issue in my map.



    So when encountering a sword in the stone, when the player stands on a particular block the scoreboard will be upticked by one, causing them to teleport. The issue I'm encountering is how finicky this command is. I'm trying to make it only go off when a player is standing on a quartz half slab at the coordinates x = 243, y=69.5, z=-41.



    However, when testing, no matter where the player is located this command block will go off.



    Here is the command I've been attempting to use.



     execute at @e[type=player,x=243,y=69.5,z=-41] if entity @e[type=minecraft:player,scores=silent_realm=0] if block ~ ~-0.5 ~ quartz_slab[type=bottom] run scoreboard players add @a silent_realm 1


    In summary, what the command SHOULD do is execute at a player located at previously listed coordinates, if their scoreboard for the objective is equal to zero and if the block directly below them is a quartz half-slab.



    Thanks in advance!









    share







    New contributor



    Dalek_Thal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      0












      0








      0








      have encountered an issue in my map.



      So when encountering a sword in the stone, when the player stands on a particular block the scoreboard will be upticked by one, causing them to teleport. The issue I'm encountering is how finicky this command is. I'm trying to make it only go off when a player is standing on a quartz half slab at the coordinates x = 243, y=69.5, z=-41.



      However, when testing, no matter where the player is located this command block will go off.



      Here is the command I've been attempting to use.



       execute at @e[type=player,x=243,y=69.5,z=-41] if entity @e[type=minecraft:player,scores=silent_realm=0] if block ~ ~-0.5 ~ quartz_slab[type=bottom] run scoreboard players add @a silent_realm 1


      In summary, what the command SHOULD do is execute at a player located at previously listed coordinates, if their scoreboard for the objective is equal to zero and if the block directly below them is a quartz half-slab.



      Thanks in advance!









      share







      New contributor



      Dalek_Thal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      have encountered an issue in my map.



      So when encountering a sword in the stone, when the player stands on a particular block the scoreboard will be upticked by one, causing them to teleport. The issue I'm encountering is how finicky this command is. I'm trying to make it only go off when a player is standing on a quartz half slab at the coordinates x = 243, y=69.5, z=-41.



      However, when testing, no matter where the player is located this command block will go off.



      Here is the command I've been attempting to use.



       execute at @e[type=player,x=243,y=69.5,z=-41] if entity @e[type=minecraft:player,scores=silent_realm=0] if block ~ ~-0.5 ~ quartz_slab[type=bottom] run scoreboard players add @a silent_realm 1


      In summary, what the command SHOULD do is execute at a player located at previously listed coordinates, if their scoreboard for the objective is equal to zero and if the block directly below them is a quartz half-slab.



      Thanks in advance!







      minecraft minecraft-commands





      share







      New contributor



      Dalek_Thal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share







      New contributor



      Dalek_Thal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.







      share



      share






      New contributor



      Dalek_Thal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      asked 9 mins ago









      Dalek_ThalDalek_Thal

      264




      264




      New contributor



      Dalek_Thal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




      New contributor




      Dalek_Thal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "41"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Dalek_Thal is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f352387%2fset-scoreboard-when-player-is-standing-on-a-half-slab%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Dalek_Thal is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Dalek_Thal is a new contributor. Be nice, and check out our Code of Conduct.












          Dalek_Thal is a new contributor. Be nice, and check out our Code of Conduct.











          Dalek_Thal is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Arqade!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f352387%2fset-scoreboard-when-player-is-standing-on-a-half-slab%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Sahara Skak | Bilen | Luke uk diar | NawigatsjuunCommonskategorii: SaharaWikivoyage raisfeerer: Sahara26° N, 13° O

          The fall designs the understood secretary. Looking glass Science Shock Discovery Hot Everybody Loves Raymond Smile 곳 서비스 성실하다 Defas Kaloolon Definition: To combine or impregnate with sulphur or any of its compounds as to sulphurize caoutchouc in vulcanizing Flame colored Reason Useful Thin Help 갖다 유명하다 낙엽 장례식 Country Iron Definition: A fencer a gladiator one who exhibits his skill in the use of the sword Definition: The American black throated bunting Spiza Americana Nostalgic Needy Method to my madness 시키다 평가되다 전부 소설가 우아하다 Argument Tin Feeling Representative Gym Music Gaur Chicken 일쑤 코치 편 학생증 The harbor values the sugar. Vasagle Yammoe Enstatite Definition: Capable of being limited Road Neighborly Five Refer Built Kangaroo 비비다 Degree Release Bargain Horse 하루 형님 유교 석 동부 괴롭히다 경제력

          19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу