Create contraption: regenerating floor block toggle












0














How do I create a system that does the following when pulsed:




  1. Switches a block from the floor with a stone block

  2. Waits for a couple seconds, wherein the block is destroyed by a player

  3. Puts the original floor block back

  4. Replaces the empty space where the stone was destroyed with another stone block from a generator.


I've tried using simple stone generator and block switcher mechanisms, but they always replace the empty space where the stone was with a piston head. Is there a different block switcher that doesn't do that, or is there a better way to create the same effect?










share|improve this question
















bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Do you have the option of command blocks?
    – rivermont - Will B.
    Sep 3 '16 at 1:56










  • No, no op. Otherwise, placeblock would work.
    – Ethan Chapman
    Sep 3 '16 at 18:56
















0














How do I create a system that does the following when pulsed:




  1. Switches a block from the floor with a stone block

  2. Waits for a couple seconds, wherein the block is destroyed by a player

  3. Puts the original floor block back

  4. Replaces the empty space where the stone was destroyed with another stone block from a generator.


I've tried using simple stone generator and block switcher mechanisms, but they always replace the empty space where the stone was with a piston head. Is there a different block switcher that doesn't do that, or is there a better way to create the same effect?










share|improve this question
















bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Do you have the option of command blocks?
    – rivermont - Will B.
    Sep 3 '16 at 1:56










  • No, no op. Otherwise, placeblock would work.
    – Ethan Chapman
    Sep 3 '16 at 18:56














0












0








0


1





How do I create a system that does the following when pulsed:




  1. Switches a block from the floor with a stone block

  2. Waits for a couple seconds, wherein the block is destroyed by a player

  3. Puts the original floor block back

  4. Replaces the empty space where the stone was destroyed with another stone block from a generator.


I've tried using simple stone generator and block switcher mechanisms, but they always replace the empty space where the stone was with a piston head. Is there a different block switcher that doesn't do that, or is there a better way to create the same effect?










share|improve this question















How do I create a system that does the following when pulsed:




  1. Switches a block from the floor with a stone block

  2. Waits for a couple seconds, wherein the block is destroyed by a player

  3. Puts the original floor block back

  4. Replaces the empty space where the stone was destroyed with another stone block from a generator.


I've tried using simple stone generator and block switcher mechanisms, but they always replace the empty space where the stone was with a piston head. Is there a different block switcher that doesn't do that, or is there a better way to create the same effect?







minecraft minecraft-redstone






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 3 '16 at 19:07

























asked Sep 2 '16 at 23:20









Ethan Chapman

440214




440214





bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • Do you have the option of command blocks?
    – rivermont - Will B.
    Sep 3 '16 at 1:56










  • No, no op. Otherwise, placeblock would work.
    – Ethan Chapman
    Sep 3 '16 at 18:56


















  • Do you have the option of command blocks?
    – rivermont - Will B.
    Sep 3 '16 at 1:56










  • No, no op. Otherwise, placeblock would work.
    – Ethan Chapman
    Sep 3 '16 at 18:56
















Do you have the option of command blocks?
– rivermont - Will B.
Sep 3 '16 at 1:56




Do you have the option of command blocks?
– rivermont - Will B.
Sep 3 '16 at 1:56












No, no op. Otherwise, placeblock would work.
– Ethan Chapman
Sep 3 '16 at 18:56




No, no op. Otherwise, placeblock would work.
– Ethan Chapman
Sep 3 '16 at 18:56










2 Answers
2






active

oldest

votes


















0














Just have the generator close but not part of the swapper. At least one block should be "ready" to be insert into the swapper at the right time instead of hoping that the generator creates a new block in time. Since lava/water generate stone based a little bit on random ticks you can't rely on that timing, but if you have the block ready and then the generator will be able to replace it during the time the rest of the contraption is working.






share|improve this answer





























    -2














    try using a repeating command block with a setblock command with the proper coordinates. (warning: does not replace it with different blocks, only replaces it with one, so it wont regenerate as the normal block)






    share|improve this answer





















    • p.s. use this command to get a command block, then turn it into a repeating one manually: /give @p minecraft:command_block
      – the helpful weirdo
      Sep 3 '16 at 19:35






    • 2




      The OP has said that he cannot use commands.
      – rivermont - Will B.
      Sep 3 '16 at 21:39











    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f284350%2fcreate-contraption-regenerating-floor-block-toggle%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Just have the generator close but not part of the swapper. At least one block should be "ready" to be insert into the swapper at the right time instead of hoping that the generator creates a new block in time. Since lava/water generate stone based a little bit on random ticks you can't rely on that timing, but if you have the block ready and then the generator will be able to replace it during the time the rest of the contraption is working.






    share|improve this answer


























      0














      Just have the generator close but not part of the swapper. At least one block should be "ready" to be insert into the swapper at the right time instead of hoping that the generator creates a new block in time. Since lava/water generate stone based a little bit on random ticks you can't rely on that timing, but if you have the block ready and then the generator will be able to replace it during the time the rest of the contraption is working.






      share|improve this answer
























        0












        0








        0






        Just have the generator close but not part of the swapper. At least one block should be "ready" to be insert into the swapper at the right time instead of hoping that the generator creates a new block in time. Since lava/water generate stone based a little bit on random ticks you can't rely on that timing, but if you have the block ready and then the generator will be able to replace it during the time the rest of the contraption is working.






        share|improve this answer












        Just have the generator close but not part of the swapper. At least one block should be "ready" to be insert into the swapper at the right time instead of hoping that the generator creates a new block in time. Since lava/water generate stone based a little bit on random ticks you can't rely on that timing, but if you have the block ready and then the generator will be able to replace it during the time the rest of the contraption is working.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Sep 21 '16 at 23:18









        ZealousHypocrites

        46339




        46339

























            -2














            try using a repeating command block with a setblock command with the proper coordinates. (warning: does not replace it with different blocks, only replaces it with one, so it wont regenerate as the normal block)






            share|improve this answer





















            • p.s. use this command to get a command block, then turn it into a repeating one manually: /give @p minecraft:command_block
              – the helpful weirdo
              Sep 3 '16 at 19:35






            • 2




              The OP has said that he cannot use commands.
              – rivermont - Will B.
              Sep 3 '16 at 21:39
















            -2














            try using a repeating command block with a setblock command with the proper coordinates. (warning: does not replace it with different blocks, only replaces it with one, so it wont regenerate as the normal block)






            share|improve this answer





















            • p.s. use this command to get a command block, then turn it into a repeating one manually: /give @p minecraft:command_block
              – the helpful weirdo
              Sep 3 '16 at 19:35






            • 2




              The OP has said that he cannot use commands.
              – rivermont - Will B.
              Sep 3 '16 at 21:39














            -2












            -2








            -2






            try using a repeating command block with a setblock command with the proper coordinates. (warning: does not replace it with different blocks, only replaces it with one, so it wont regenerate as the normal block)






            share|improve this answer












            try using a repeating command block with a setblock command with the proper coordinates. (warning: does not replace it with different blocks, only replaces it with one, so it wont regenerate as the normal block)







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Sep 3 '16 at 19:33









            the helpful weirdo

            1




            1












            • p.s. use this command to get a command block, then turn it into a repeating one manually: /give @p minecraft:command_block
              – the helpful weirdo
              Sep 3 '16 at 19:35






            • 2




              The OP has said that he cannot use commands.
              – rivermont - Will B.
              Sep 3 '16 at 21:39


















            • p.s. use this command to get a command block, then turn it into a repeating one manually: /give @p minecraft:command_block
              – the helpful weirdo
              Sep 3 '16 at 19:35






            • 2




              The OP has said that he cannot use commands.
              – rivermont - Will B.
              Sep 3 '16 at 21:39
















            p.s. use this command to get a command block, then turn it into a repeating one manually: /give @p minecraft:command_block
            – the helpful weirdo
            Sep 3 '16 at 19:35




            p.s. use this command to get a command block, then turn it into a repeating one manually: /give @p minecraft:command_block
            – the helpful weirdo
            Sep 3 '16 at 19:35




            2




            2




            The OP has said that he cannot use commands.
            – rivermont - Will B.
            Sep 3 '16 at 21:39




            The OP has said that he cannot use commands.
            – rivermont - Will B.
            Sep 3 '16 at 21:39


















            draft saved

            draft discarded




















































            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2f284350%2fcreate-contraption-regenerating-floor-block-toggle%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

            Михайлов, Христо

            Гороховецкий артиллерийский полигон

            Центральная группа войск