Guest User

Untitled

a guest
Apr 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1.         int kk = 2;
  2.         for (int q = 0; q < 11; q++) {
  3.             kk++;
  4.             int ii = 2;
  5.             for (int a = 0; a < 11; a++) {
  6.                 if (a == 0 || a == 10 || q == 0 || q == 10) {
  7.                     for (int b = 0; b < 24; b++) {
  8.                         world.setBlockWithNotify(i + ii, j + b, k + kk, block);
  9.                     }
  10.                 }
  11.                 for (int b = 0; b < 6; b++)
  12.                     world.setBlockWithNotify(i + ii, j + b*4, k + kk, block);
  13.                 ii++;
  14.             }
  15.         }
Add Comment
Please, Sign In to add comment