MFF

    Minecraft Forge France
    • Récent
    • Mots-clés
    • Populaire
    • Utilisateurs
    • Groupes
    • Forge Events
      • Automatique
      • Foncé
      • Clair
    • S'inscrire
    • Se connecter

    Faire apparaitre des structure en jeu.

    Planifier Épinglé Verrouillé Déplacé Résolu Anciennes versions
    1.5.2
    67 Messages 7 Publieurs 19.2k Vues 1 Watching
    Charger plus de messages
    • Du plus ancien au plus récent
    • Du plus récent au plus ancien
    • Les plus votés
    Répondre
    • Répondre à l'aide d'un nouveau sujet
    Se connecter pour répondre
    Ce sujet a été supprimé. Seuls les utilisateurs avec les droits d'administration peuvent le voir.
    • elias54E Hors-ligne
      elias54 Administrateurs
      dernière édition par

      Le game registry que je t’ai donné se met dans la fonction nommé “init” de ton mod, ou “load” 🙂

      Mon site | GitHub

      1 réponse Dernière réponse Répondre Citer 0
      • elias54E Hors-ligne
        elias54 Administrateurs
        dernière édition par

        @‘robin4002’:

        La méthode n’existe plus en 1.5, remplace tout les setBlockAndMetadata par setBlock
        Il faut que tu ajoute aussi un argument de plus, le flag, mets 3 ducoup :
        [code_java]world.setBlockAndMetadata(i + 0, j + 17, k + 7, Block.cloth.blockID, 2);[/code_java]
        donne ça :
        [code_java]world.setBlock(i + 0, j + 17, k + 7, Block.cloth.blockID, 2, 3);[/code_java]

        Le mieux serait d’utiliser setBlockMetadataWithNotify

        Mon site | GitHub

        1 réponse Dernière réponse Répondre Citer 0
        • S Hors-ligne
          sevenno07
          dernière édition par

          okok, je vais faire sa. mais par contre je ne souhaite pas que ma structure se génère sur ma map attention, c’est juste une pouce craftable x), c’est vrais que j’ai oublier de précisai se poins, mais je vais regardai sa tout de suite.
          Ou alors j’ai mal compris x).
          ––

          Le “setBlockMetadataWithNotify” ne me mais pas d’erreur, par contre il faut que j’enlève le 3 a la fin de toute les ligne x)


          Pour faire pousser un arbre ou autre sous forge en 1.4.7 il fallait rajoutais sa dans le @Init

          Erreur
          [CODE_Java]MinecraftForge.EVENT_BUS.register(new TutoBoneMeal());[/CODE_Java]
          source: http://minecraft.fr/forum/index.php?threads/modding-1-5-2-créer-un-mod-avec-minecraft-forge-en-cour-dupdate.59416/
          Et créer la classe “TutoBoneMeal”
          :::
          [CODE_Java]package robin4002.modtuto.common;

          import net.minecraftforge.event.Event;
          import net.minecraftforge.event.ForgeSubscribe;
          import net.minecraftforge.event.entity.player.BonemealEvent;

          public class TutoBoneMeal
          {

          @ForgeSubscribe
          public void onUseBonemeal(BonemealEvent event)
          {
          if (event.ID == modtuto.TutoSapling.blockID)
          {
          if (!event.world.isRemote)
          {
          ((TutoSapling)modtuto.TutoSapling).growTree(event.world, event.X, event.Y, event.Z, event.world.rand);
          event.setResult(Event.Result.ALLOW);
          }
          }
          }
          }[/CODE_Java]
          :::
          source: http://minecraft.fr/forum/index.php?threads/modding-1-5-2-créer-un-mod-avec-minecraft-forge-en-cour-dupdate.59416/
          Mais du coup ce n’est plus d’actualité, en 1.5.1, je n’est pas encor fini pour la génération de ma structure avec la pouce mais j’en aurais besoin pour testait plus rapidement au lieu de poirotai voir si sa pouce x).

          Je sais j’en demande beaucoup, un coup de main ? XD

          Merci d’avance.

          Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

          1 réponse Dernière réponse Répondre Citer 0
          • BialeckB Hors-ligne
            Bialeck
            dernière édition par

            Je suis peut être trop curieux mais si tu ne génères pas la structure sur la map , tu la génères où?!?

            Ceci et cela donne ça et celle de l’autre est la sienne donc sa
            et un pouce n’est pas une pousse ^^ respire que tu écris 🙂

            CPU :intel i7-3820
            MoBo : Asus Saberthoot x79
            RAM : G.skill ripjaws 4*4Go DDRIII 1600Mhz
            GPU : Nvidia gtx680
            Os : Windows 7 intégral 64bit

            1 réponse Dernière réponse Répondre Citer 0
            • S Hors-ligne
              sevenno07
              dernière édition par

              Lol ! Je l’est dit c’est un élément craftable XD, je craft une plante “génétiquement modifier” donc il se génère quand je la plante sois en attendent qu’elle pousse ou en utilisent de la bone meal x).

              Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

              1 réponse Dernière réponse Répondre Citer 0
              • BialeckB Hors-ligne
                Bialeck
                dernière édition par

                Et quand la plante pousse elle génère la structure c’est ça?

                CPU :intel i7-3820
                MoBo : Asus Saberthoot x79
                RAM : G.skill ripjaws 4*4Go DDRIII 1600Mhz
                GPU : Nvidia gtx680
                Os : Windows 7 intégral 64bit

                1 réponse Dernière réponse Répondre Citer 0
                • S Hors-ligne
                  sevenno07
                  dernière édition par

                  Yep s’est sa !
                  ou a tu vue la faute ? 😛

                  Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

                  1 réponse Dernière réponse Répondre Citer 0
                  • elias54E Hors-ligne
                    elias54 Administrateurs
                    dernière édition par

                    Dans ce cas il faut préciser, car tu dis que tu veux faire apparaître une structure en jeu, mais il faut nous dire quoi précisément, si c’est un arbre, dans ce cas inutile de parler de structure, mais… d’arbre ! xD

                    Mon site | GitHub

                    1 réponse Dernière réponse Répondre Citer 0
                    • S Hors-ligne
                      sevenno07
                      dernière édition par

                      nana ! attention, je veux faire apparaître une structure COMME si c’été un arbre.

                      PS: oui désolé j’ai des difficulté d’expression même a l’écrit x)___
                      désolé double poste, bon du coup je vais faire du spoil:
                      :::

                      En faite ma “fameuse” structure est un champignon extra géant.
                      Content ? J’ai gâchai la surprise T_T.

                      :::

                      Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

                      1 réponse Dernière réponse Répondre Citer 0
                      • elias54E Hors-ligne
                        elias54 Administrateurs
                        dernière édition par

                        Dans ce cas il faut la faire générer comme un arbre, il te suffit de régler la fréquence d’apparition, puis c’est bon 😉

                        Mon site | GitHub

                        1 réponse Dernière réponse Répondre Citer 0
                        • S Hors-ligne
                          sevenno07
                          dernière édition par

                          … :(, je ne veux pas qu’il pope vous le faite exprès ? XD
                          C’est un crafte ! Jarrète pas de le répétait, on peu le faire apparaître SEULEMENT si on a sa pousse, donc il faut le crafter.

                          Désolé de m’emportai, mais a force de répéter toujours la même chose sa échauffe les neurone x).

                          Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

                          1 réponse Dernière réponse Répondre Citer 0
                          • BialeckB Hors-ligne
                            Bialeck
                            dernière édition par

                            CPU :intel i7-3820
                            MoBo : Asus Saberthoot x79
                            RAM : G.skill ripjaws 4*4Go DDRIII 1600Mhz
                            GPU : Nvidia gtx680
                            Os : Windows 7 intégral 64bit

                            1 réponse Dernière réponse Répondre Citer 0
                            • S Hors-ligne
                              sevenno07
                              dernière édition par

                              Eu … lol
                              tu aurai pus évitais se genre de chose quand même lol.

                              Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

                              1 réponse Dernière réponse Répondre Citer 0
                              • robin4002R Hors-ligne
                                robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                                dernière édition par

                                Il nous faut le code de la pousse et le nom de ta classe du worldgen de ta structure

                                1 réponse Dernière réponse Répondre Citer 0
                                • S Hors-ligne
                                  sevenno07
                                  dernière édition par

                                  Ok, Je fini encor qu’elle que teste et je vous passe tout sa.

                                  –-------

                                  Bon … sa fonctionne toujours pas:
                                  :::

                                  [CODE_Java]package genetical_modifier.common;

                                  import genetical_modifier.common.structure.MGMgen;

                                  import java.util.List;
                                  import java.util.Random;

                                  import net.minecraft.block.BlockSapling;
                                  import net.minecraft.client.renderer.texture.IconRegister;
                                  import net.minecraft.creativetab.CreativeTabs;
                                  import net.minecraft.item.ItemStack;
                                  import net.minecraft.world.World;
                                  import net.minecraft.world.gen.feature.WorldGenerator;
                                  import cpw.mods.fml.relauncher.Side;
                                  import cpw.mods.fml.relauncher.SideOnly;

                                  public class MGM extends BlockSapling
                                  {
                                  public static final String[] WOOD_TYPES = new String[] {“Mgm”};

                                  protected MGM(int i, int j)
                                  {
                                  super(i);
                                  float f = 0.4F;
                                  setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f * 2.0F, 0.5F + f);
                                  this.setCreativeTab(CreativeTabs.tabDecorations);
                                  }

                                  public void growTree(World world, int i, int j, int k, Random random)
                                  {
                                  int l = world.getBlockMetadata(i, j, k) & 3;
                                  world.setBlock(i, j, k, 0);
                                  Object obj = null;
                                  obj = new MGMgen(false);
                                  if(!((WorldGenerator) (obj)).generate(world, random, i, j, k))
                                  {
                                  world.setBlockMetadataWithNotify(i, j, k, blockID, l);
                                  }
                                  }

                                  @SideOnly(Side.CLIENT)
                                  public void registerIcons(IconRegister iconregister)
                                  {
                                  this.blockIcon = iconregister.registerIcon(“GeneticalModifier:Mgm”);
                                  }

                                  @SideOnly(Side.CLIENT)

                                  public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List)
                                  {
                                  par3List.add(new ItemStack(par1, 1, 0));

                                  }

                                  public void fertilize(World world, int x, int y, int z)
                                  {

                                  }
                                  }[/CODE_Java]

                                  :::
                                  Le nom de la class de génération est MGMgen.

                                  Et sinon j’ai aussi pour la bone meal qui me mais des erreur ou c’est souligné:
                                  Erreur:
                                  :::

                                  [CODE_Java]package genetical_modifier.common;

                                  import net.minecraftforge.event.Event;
                                  import net.minecraftforge.event.ForgeSubscribe;
                                  import net.minecraftforge.event.entity.player.BonemealEvent;

                                  public class ModBoneMeal
                                  {

                                  @ForgeSubscribe
                                  public void onUseBonemeal(BonemealEvent event)
                                  {
                                  if (event.ID == genetical_modifier.common.MGM.blockID)
                                  {
                                  if (!event.world.isRemote)
                                  {
                                  ((MGM)genetical_modifier.common.MGM.blockID).growTree(event.world, event.X, event.Y, event.Z, event.world.rand);
                                  event.setResult(Event.Result.ALLOW);
                                  }
                                  }
                                  }
                                  }[/CODE_Java]

                                  :::
                                  Source du tuto en 1.4.7 que je suis: http://minecraft.fr/forum/index.php?threads/modding-1-5-2-créer-un-mod-avec-minecraft-forge-en-cour-dupdate.59416/
                                  pourtant quand je regarde sa devrais fonctionnai :(.
                                  Et quand je lance le debug SENS la bone meal, sa crash.

                                  –-------
                                  Quand sa crash sa doit venir du niveau des texture, car quand je supprime la ligne de commande qui dit ou aller cherchai la texture, le jeux se lance sens problème, mais par contre, la pouce a la texture d’une pouce normal.

                                  Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

                                  1 réponse Dernière réponse Répondre Citer 0
                                  • robin4002R Hors-ligne
                                    robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                                    dernière édition par

                                    genetical_modifier.common.MGM.blockID doit être l’id de ton bloc, MGM étant ta classe principale, ça risque pas de fonctionner … Il faut que tu mettes :
                                    genetical_modifier.common.MGM.<nom de=“” ton=“” sapling=“”>.blockID</nom>

                                    1 réponse Dernière réponse Répondre Citer 0
                                    • S Hors-ligne
                                      sevenno07
                                      dernière édition par

                                      Je te remercie, mais j’ai déjà testait sa et sa ne fonctionne pas x), Tu parle bien du code pour la bone meal ? Pour pas que je me goure x)

                                      Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

                                      1 réponse Dernière réponse Répondre Citer 0
                                      • pentiminaxP Hors-ligne
                                        pentiminax
                                        dernière édition par

                                        Cela fonctionne comme ça pour moi :

                                        
                                        @ForgeSubscribe
                                        public void onUseBonemeal(BonemealEvent event)
                                        {
                                        if (event.ID == TaClassePrincipale.MGM.blockID)
                                        {
                                        if (!event.world.isRemote)
                                        {
                                        ((MGM)TaClassePrincipale.MGM).growTree(event.world, event.X, event.Y, event.Z, event.world.rand);
                                        event.setResult(Event.Result.ALLOW);
                                        }
                                        }
                                        }
                                        
                                        
                                        1 réponse Dernière réponse Répondre Citer 0
                                        • S Hors-ligne
                                          sevenno07
                                          dernière édition par

                                          Hum oui peut être parce que on ne voie plus souligné en rouge, après, ésque sa marche en jeu ? x)
                                          –-------
                                          Bon j’ai testai, et l’or du debug sa ne m’afiche pas d’erreur … et quand je fais un click droit avec de la bone meal sur ma pousse, sa ne fais rien … donc : sois j’avais reson, ou soit sa doit vennir de mon fichier de generation … :
                                          :::
                                          [CODE_Java]package genetical_modifier.common.structure;
                                          import java.util.Random;

                                          import net.minecraft.block.Block;
                                          import net.minecraft.world.World;
                                          import net.minecraft.world.gen.feature.WorldGenerator;

                                          public class MGMgen extends WorldGenerator
                                          {
                                          public MGMgen(boolean par1)
                                          {
                                          super(par1);
                                          }
                                          public boolean generate(World world, Random rand, int i, int j, int k)
                                          {
                                          world.setBlockMetadataWithNotify(i + 0, j + 17, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 0, j + 17, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 17, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 17, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 17, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 17, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 17, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 0, j + 18, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 0, j + 18, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 18, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 18, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 18, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 18, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 18, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 0, j + 19, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 0, j + 19, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 19, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 19, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 19, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 19, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 19, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 0, j + 20, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 0, j + 20, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 20, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 20, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 20, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 20, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 20, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 0, j + 21, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 0, j + 21, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 21, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 21, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 21, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 21, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 21, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 0, j + 22, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 0, j + 22, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 22, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 22, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 22, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 22, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 22, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 0, j + 23, k + 8, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 0, j + 23, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 23, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 23, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 23, k + 12, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 0, j + 24, k + 9, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 0, j + 24, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 0, j + 24, k + 11, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 17, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 17, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 17, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 17, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 18, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 18, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 18, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 18, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 19, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 19, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 19, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 19, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 20, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 20, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 20, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 20, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 21, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 21, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 21, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 21, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 22, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 22, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 22, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 22, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 23, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 23, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 23, k + 7, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 23, k + 13, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 23, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 23, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 24, k + 6, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 24, k + 7, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 24, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 24, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 24, k + 13, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 24, k + 14, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 25, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 25, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 25, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 25, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 25, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 25, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 25, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 1, j + 26, k + 8, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 1, j + 26, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 26, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 26, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 1, j + 26, k + 12, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 17, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 17, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 18, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 18, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 19, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 19, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 20, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 20, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 21, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 21, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 22, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 22, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 23, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 23, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 24, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 24, k + 5, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 24, k + 15, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 24, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 25, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 25, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 25, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 25, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 26, k + 6, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 26, k + 7, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 26, k + 13, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 26, k + 14, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 2, j + 27, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 2, j + 27, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 27, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 27, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 27, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 27, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 2, j + 27, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 17, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 17, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 18, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 18, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 19, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 19, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 20, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 20, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 21, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 21, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 22, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 22, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 23, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 23, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 24, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 24, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 25, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 25, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 26, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 26, k + 5, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 26, k + 15, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 26, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 27, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 27, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 27, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 27, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 3, j + 28, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 3, j + 28, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 28, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 28, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 28, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 28, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 3, j + 28, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 17, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 17, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 18, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 18, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 19, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 19, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 20, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 20, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 21, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 21, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 22, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 22, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 23, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 23, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 24, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 24, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 25, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 25, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 26, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 26, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 27, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 27, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 28, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 28, k + 6, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 4, j + 28, k + 14, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 4, j + 28, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 4, j + 29, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 4, j + 29, k + 8, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 4, j + 29, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 4, j + 29, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 4, j + 29, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 4, j + 29, k + 12, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 4, j + 29, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 17, k + 1, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 17, k + 19, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 18, k + 1, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 18, k + 19, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 19, k + 1, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 19, k + 19, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 20, k + 1, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 20, k + 19, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 21, k + 1, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 21, k + 19, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 22, k + 1, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 22, k + 19, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 23, k + 1, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 23, k + 19, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 24, k + 2, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 5, j + 24, k + 18, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 5, j + 25, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 25, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 26, k + 3, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 5, j + 26, k + 17, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 5, j + 27, k + 3, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 27, k + 17, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 28, k + 4, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 28, k + 5, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 5, j + 28, k + 15, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 5, j + 28, k + 16, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 29, k + 6, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 29, k + 7, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 5, j + 29, k + 13, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 5, j + 29, k + 14, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 5, j + 30, k + 8, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 5, j + 30, k + 9, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 5, j + 30, k + 10, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 5, j + 30, k + 11, Block.cloth.blockID, 3);
                                          world.setBlockMetadataWithNotify(i + 5, j + 30, k + 12, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 6, j + 17, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 17, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 18, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 18, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 19, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 19, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 20, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 20, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 21, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 21, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 22, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 22, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 23, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 23, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 24, k + 1, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 6, j + 24, k + 19, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 6, j + 25, k + 2, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 25, k + 18, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 26, k + 2, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 6, j + 26, k + 18, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 6, j + 27, k + 3, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 27, k + 17, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 28, k + 4, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 6, j + 28, k + 16, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 6, j + 29, k + 5, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 6, j + 29, k + 6, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 6, j + 29, k + 14, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 6, j + 29, k + 15, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 6, j + 30, k + 7, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 6, j + 30, k + 8, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 6, j + 30, k + 9, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 6, j + 30, k + 10, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 6, j + 30, k + 11, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 6, j + 30, k + 12, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 6, j + 30, k + 13, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 7, j + 17, k + 0, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 7, j + 17, k + 20, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 7, j + 18, k + 0, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 7, j + 18, k + 20, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 7, j + 19, k + 0, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 7, j + 19, k + 20, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 7, j + 20, k + 0, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 7, j + 20, k + 20, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 7, j + 21, k + 0, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 7, j + 21, k + 20, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 7, j + 22, k + 0, Block.cloth.blockID, 2);
                                          world.setBlockMetadataWithNotify(i + 7, j + 22, k + 20, Block.cloth.blockID, 4);
                                          world.setBlockMetadataWithNotify(i + 10, j + 21, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 21, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 22, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 22, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 22, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 22, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 22, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 23, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 23, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 23, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 23, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 23, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 24, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 24, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 24, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 24, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 24, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 25, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 25, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 25, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 25, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 25, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 26, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 26, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 26, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 26, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 26, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 27, k + 2, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 27, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 27, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 27, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 27, k + 18, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 28, k + 3, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 28, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 28, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 28, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 28, k + 17, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 29, k + 4, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 29, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 29, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 29, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 29, k + 16, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 30, k + 5, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 30, k + 6, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 10, j + 30, k + 9, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 30, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 30, k + 11, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 10, j + 30, k + 14, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 10, j + 30, k + 15, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 10, j + 31, k + 7, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 10, j + 31, k + 8, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 10, j + 31, k + 9, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 10, j + 31, k + 10, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 10, j + 31, k + 11, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 10, j + 31, k + 12, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 10, j + 31, k + 13, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 0, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 1, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 2, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 3, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 4, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 5, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 6, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 7, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 8, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 9, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 10, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 11, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 12, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 13, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 14, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 15, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 16, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 17, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 17, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 17, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 18, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 18, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 18, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 19, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 19, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 19, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 20, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 20, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 20, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 21, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 21, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 21, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 22, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 22, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 22, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 23, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 23, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 23, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 24, k + 0, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 11, j + 24, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 24, k + 20, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 11, j + 25, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 25, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 25, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 26, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 26, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 26, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 27, k + 2, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 27, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 27, k + 18, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 28, k + 3, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 28, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 28, k + 17, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 29, k + 4, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 29, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 29, k + 16, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 30, k + 5, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 11, j + 30, k + 6, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 11, j + 30, k + 10, Block.cloth.blockID, 10);
                                          world.setBlockMetadataWithNotify(i + 11, j + 30, k + 14, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 11, j + 30, k + 15, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 11, j + 31, k + 7, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 11, j + 31, k + 8, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 11, j + 31, k + 9, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 11, j + 31, k + 10, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 11, j + 31, k + 11, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 11, j + 31, k + 12, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 11, j + 31, k + 13, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 12, j + 17, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 17, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 18, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 18, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 19, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 19, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 20, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 20, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 21, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 21, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 22, k + 0, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 22, k + 20, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 23, k + 0, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 12, j + 23, k + 20, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 12, j + 24, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 24, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 25, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 25, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 26, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 12, j + 26, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 12, j + 27, k + 2, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 27, k + 18, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 28, k + 3, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 28, k + 17, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 29, k + 4, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 12, j + 29, k + 16, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 12, j + 30, k + 5, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 12, j + 30, k + 6, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 12, j + 30, k + 7, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 12, j + 30, k + 13, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 12, j + 30, k + 14, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 12, j + 30, k + 15, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 12, j + 31, k + 8, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 12, j + 31, k + 9, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 12, j + 31, k + 10, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 12, j + 31, k + 11, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 12, j + 31, k + 12, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 17, k + 0, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 17, k + 20, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 18, k + 0, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 18, k + 20, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 19, k + 0, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 19, k + 20, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 20, k + 0, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 20, k + 20, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 21, k + 0, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 21, k + 20, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 22, k + 0, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 22, k + 20, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 23, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 13, j + 23, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 13, j + 24, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 13, j + 24, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 13, j + 25, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 25, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 26, k + 2, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 13, j + 26, k + 18, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 13, j + 27, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 27, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 28, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 28, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 29, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 29, k + 5, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 13, j + 29, k + 15, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 13, j + 29, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 30, k + 6, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 30, k + 7, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 13, j + 30, k + 8, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 13, j + 30, k + 12, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 13, j + 30, k + 13, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 13, j + 30, k + 14, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 13, j + 31, k + 9, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 13, j + 31, k + 10, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 13, j + 31, k + 11, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 14, j + 17, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 17, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 18, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 18, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 19, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 19, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 20, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 20, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 21, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 21, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 22, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 22, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 23, k + 1, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 23, k + 19, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 24, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 14, j + 24, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 14, j + 25, k + 2, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 25, k + 18, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 26, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 14, j + 26, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 14, j + 27, k + 3, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 27, k + 17, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 28, k + 4, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 14, j + 28, k + 16, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 14, j + 29, k + 5, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 14, j + 29, k + 6, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 14, j + 29, k + 14, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 14, j + 29, k + 15, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 14, j + 30, k + 7, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 14, j + 30, k + 8, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 14, j + 30, k + 9, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 14, j + 30, k + 10, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 14, j + 30, k + 11, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 14, j + 30, k + 12, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 14, j + 30, k + 13, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 17, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 17, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 18, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 18, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 19, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 19, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 20, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 20, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 21, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 21, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 22, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 22, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 23, k + 1, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 23, k + 19, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 24, k + 2, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 15, j + 24, k + 18, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 15, j + 25, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 25, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 26, k + 3, Block.cloth.blockID, 1);
                                          world.setBlockMetadataWithNotify(i + 15, j + 26, k + 17, Block.cloth.blockID, 5);
                                          world.setBlockMetadataWithNotify(i + 15, j + 27, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 27, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 28, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 28, k + 5, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 15, j + 28, k + 15, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 15, j + 28, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 29, k + 6, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 29, k + 7, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 15, j + 29, k + 13, Block.cloth.blockID, 9);
                                          world.setBlockMetadataWithNotify(i + 15, j + 29, k + 14, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 15, j + 30, k + 8, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 15, j + 30, k + 9, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 15, j + 30, k + 10, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 15, j + 30, k + 11, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 15, j + 30, k + 12, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 17, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 17, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 18, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 18, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 19, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 19, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 20, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 20, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 21, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 21, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 22, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 22, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 23, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 23, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 24, k + 2, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 24, k + 18, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 25, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 25, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 26, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 26, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 27, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 27, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 28, k + 5, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 28, k + 6, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 16, j + 28, k + 14, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 16, j + 28, k + 15, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 16, j + 29, k + 7, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 16, j + 29, k + 8, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 16, j + 29, k + 9, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 16, j + 29, k + 10, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 16, j + 29, k + 11, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 16, j + 29, k + 12, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 16, j + 29, k + 13, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 17, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 17, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 18, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 18, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 19, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 19, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 20, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 20, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 21, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 21, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 22, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 22, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 23, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 23, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 24, k + 3, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 24, k + 17, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 25, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 25, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 26, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 26, k + 5, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 26, k + 15, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 26, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 27, k + 5, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 27, k + 6, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 27, k + 14, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 27, k + 15, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 17, j + 28, k + 7, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 17, j + 28, k + 8, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 28, k + 9, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 28, k + 10, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 28, k + 11, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 28, k + 12, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 17, j + 28, k + 13, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 17, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 17, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 18, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 18, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 19, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 19, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 20, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 20, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 21, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 21, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 22, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 22, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 23, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 23, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 24, k + 4, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 24, k + 5, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 24, k + 15, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 24, k + 16, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 25, k + 5, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 25, k + 6, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 25, k + 14, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 25, k + 15, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 26, k + 6, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 26, k + 7, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 26, k + 13, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 26, k + 14, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 18, j + 27, k + 7, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 18, j + 27, k + 8, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 27, k + 9, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 27, k + 10, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 27, k + 11, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 27, k + 12, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 18, j + 27, k + 13, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 19, j + 17, k + 5, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 19, j + 17, k + 6, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 19, j + 17, k + 14, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 19, j + 17, k + 15, Block.cloth.blockID, 6);
                                          world.setBlockMetadataWithNotify(i + 19, j + 18, k + 5, Block.cloth.blockID, 8);
                                          world.setBlockMetadataWithNotify(i + 19, j + 18, k + 6, Block.cloth.blockID, 7);
                                          world.setBlockMetadataWithNotify(i + 19, j + 18, k + 14, Block.cloth.blockID, 7);

                                          return true;
                                          }

                                          public int getRenderType()
                                          {
                                          return 1;
                                          }
                                          }[/CODE_Java]
                                          :::

                                          Auteur originale de Sevenno's Addons et de [url=http://www.minecraftfor…

                                          1 réponse Dernière réponse Répondre Citer 0
                                          • pentiminaxP Hors-ligne
                                            pentiminax
                                            dernière édition par

                                            Oui ça devrait fonctionner… Normalement ;D

                                            1 réponse Dernière réponse Répondre Citer 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 4 / 4
                                            • Premier message
                                              Dernier message
                                            Design by Woryk
                                            ContactMentions Légales

                                            MINECRAFT FORGE FRANCE © 2024

                                            Powered by NodeBB