Tower Mod | EpicMC Modly Tutorials

Minecraft Modding with EpicMC Modly™



Previous ProjectNext Project

Project #3: Tower Mod

In this mod, you will be able to build a tower with one command.

  1. Select "Functions" and then function. Change the function name to "start". All the blocks should go inside the function.
  2. On the left side, click "Minecraft", then "Drone", and select New drone. A drone is an invisible robot that can move around to build blocks or spawn mobs in your Minecraft world.
  3. Create a variable by going to "Variables" and clicking Create variable.... When the dialog pops up, enter d. Think of a variable like the name of the drone.
  4. Go to "Variables" and drag the set _ to block to the New drone block. It should look like this:
    set d to new Drone
  5. On the left side, click "Loops" and select Repeat [] times.
  6. Go to "Drone" and select Move drone [] [] [] blocks. Drag this block into the Repeat [] times block.
  7. Change "forward" to "up".
  8. Under Math, select 0 and put it into the slot of this block. Change 0 to 1.
  9. Go to "Drone" and select Drone [] places block []. Drag this into the loop.
  10. On the left side, click "Materials" and choose block []. Put it in the slot of Drone [] places block []. Choose any block you want in the dropdown. The loop should look like this:
    FIGURE IT OUT YOURSELF
  11. Click Deploy at the top. If successful, it shows what you need to enter to run the mod.
  12. In Minecraft, go to the Modly character and click on it to enter the Modly world.
  13. Enter /mod <your Modly username>:tower to run your mod!