You are on page 1of 5

Mundo 1

moveForward();

moveForward();

moveForward();
Mundo 2

moveForward();

turn("right");

moveForward();

moveForward();
Mundo 3

moveForward();

moveForward();

moveForward();

moveForward();

moveForward();

moveForward();

moveForward();
Mundo 4

repeatUntilGoal(function () {

moveForward()
Mundo 5

repeatUntilGoal(function () {

turn("right");

moveForward();
moveForward();

});
Mundo 6

for (var count = 0; count < 3; count++) {

moveForward();

turn("right");

for (var count2 = 0; count2 < 6; count2++) {

moveForward();

turn("left");

for (var count3 = 0; count3 < 3; count3++) {

moveForward();

}
Mundo 7

repeatUntilGoal(function () {

moveForward();

ifPath('right', function () {

turn("right");

});

});
Mundo 8

repeatUntilGoal(function () {

moveForward();
ifPath('right', function () {

turn("right");

});

});
Mundo 9

repeatUntilGoal(function () {

moveForward();

ifStandingOn('blueCoralBlock', function () {

turn("right");

});

ifStandingOn('planksOak', function () {

turn("left");

});

ifStandingOn('redCoralBlock', function () {

turn("left");

});

});
Mundo 10

repeatUntilGoal(function () {

moveForward();

ifStandingOn('seaLantern', function () {

turn("right");

});

ifStandingOn('redCoralBlock', function () {
turn("right");

});

ifStandingOn('blueCoralBlock', function () {

turn("left");

});

});
Mundo 11

repeatUntilConduit(function () {

moveForward();

ifStandingOnLimit('seaLantern', function () {

turn("right");

placePrismarine();

});

ifStandingOnLimit('darkPrismarine', function () {

placePrismarine();

});

});
Mundo 12

for (var count = 0; count < 7; count++) {

ifStandingOn('sand', function () {

moveForward();

turn("right");

ifStandingOn('seaLantern', function () {

ifPath('ahead', function () {
placeBlock("strippedDarkOak");

moveForward();

});

placeBlock("strippedOak");

});

});

/*

turn("right");

*/

You might also like