Navigation

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Nasen
    N
    • Profile
    • Following 2
    • Followers 1
    • Topics 6
    • Posts 13
    • Best 0
    • Groups 0

    Nasen

    @Nasen

    -2
    Reputation
    3
    Profile views
    13
    Posts
    1
    Followers
    2
    Following
    Joined Last Online

    Nasen Follow

    Latest posts made by Nasen

    • RE: Hammer 5x5

      @FeedBack il est déjà en "resolut "

      posted in 1.12.x
      N
      Nasen
    • RE: Casque qui met en place avant un block

      @UtopiePhysique
      Ok ok merci beaucoup ^^ jvais faire des test

      posted in Support pour les moddeurs
      N
      Nasen
    • Casque qui met en place avant un block

      Bonjour,
      Je cherche à faire un casque qui au au moment où on l’a il met en surbriance un block .
      Cordialement
      Nasen

      posted in Support pour les moddeurs
      N
      Nasen
    • RE: Hammer 5x5

      Merci beaucoup ^^

      posted in 1.12.x
      N
      Nasen
    • Hammer 5x5

      Bonjour , je voudrais faire un hammer 5x5x1 en 1.12.2 il y a un poste qui montre comment faire un hammer 5x5 mais le post est en 1.7 j’ai essayer de l’adapter en 1.12 mais cela n’a pas fonctionné et le hammer ne casse que 1 block

      Code adapter en 1.12.2

      
      package fr.hariona.nasenmod.items;
      
      
      import fr.hariona.harionamod.Main;
      
      import net.minecraft.block.Block;
      import net.minecraft.block.state.IBlockState;
      import net.minecraft.entity.EntityLivingBase;
      import net.minecraft.entity.player.EntityPlayer;
      import net.minecraft.inventory.EntityEquipmentSlot;
      import net.minecraft.item.ItemPickaxe;
      import net.minecraft.item.ItemStack;
      import net.minecraft.tileentity.TileEntity;
      import net.minecraft.util.math.BlockPos;
      import net.minecraft.world.World;
      
      
      public class SpectreHammer extends ItemPickaxe {
      
      
          public SpectreHammer(String name, ToolMaterial material, float v) {
              super(material);
              this.setRegistryName(name);
              this.setUnlocalizedName(name);
              this.setCreativeTab(Main.hariona_tab);
          }
          public boolean onBlockDestroyed(ItemStack stack, World world, Block block, BlockPos pos, int x, int y, int z, EntityLivingBase living)
          {
              if(living instanceof EntityPlayer)
              {
      
      
                  for(int x1 = -2; x1 < 3; x1++)
                  {
                      for(int y1 = -2; y1 < 3; y1++)
                      {
                          for(int z1 = -2; z1 < 3; z1++)
                          {
      
                              BlockPos pos1 = new BlockPos(x + x1, y + y1, z + z1);
                              if(world.getBlockState(pos1).getBlockHardness(world, pos1) >= 0) {
                                  world.getBlockState(pos1).getBlock().harvestBlock(world, (EntityPlayer)living, pos, world.getBlockState(pos1), TileEntity.create(world, getNBTShareTag(stack) ), stack );
                                  world.setBlockToAir(pos1);
      
                              }
                          }
                      }
                  }
              }
              return super.onBlockDestroyed(stack, world, (IBlockState) block,pos, living);
          }
      }
      
      

      Si quelqu’un aurait une idée ,
      Cordialement,
      Nasen

      posted in 1.12.x
      N
      Nasen
    • RE: Block 3D

      Ok merci beaucoup ^^

      posted in Support pour les moddeurs
      N
      Nasen
    • RE: Block 3D

      @AstFaster
      Oui j’utilise se logiciel mais le problème étant que j’ai le .json de mon block custom mais je sais pas du tout comment faire le block sur éclipse

      posted in Support pour les moddeurs
      N
      Nasen
    • Block 3D

      Bonjour , je veux faire un minerais 3D un peux comme du Crystal mais je sais pas du tout comment m’y prendre j’ai chercher mais je n’ai rien trouver , j’ai des base en modding , si quelqu’un aurait une idée .
      Merci

      posted in Support pour les moddeurs
      N
      Nasen
    Design by Woryk
    Contact / Mentions Légales / Faire un don

    MINECRAFT FORGE FRANCE © 2018

    Powered by NodeBB