• 0

    posted a message on Creating a Dimension without Dimension API?
    Wuppies tutorials for 1.4.6 just scroll down and youll see dimention tutrials
    http://wuppy29.blogspot.com/2012/10/forge-modding-142.html
    Posted in: Modification Development
  • 0

    posted a message on Making Textures (blocks, Items, Mobs, armor, etc)
    This guy is definitively good his textures are just what i asked for. I highly recommend him.
    Posted in: Resource Pack Discussion
  • 1

    posted a message on MagicMod ideas needed.
    There is already a magic system set us along with several spells. Im now looking for ideas for types of spells types of armors and just general cool things that could be in the mod.
    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on Looking For a Texture Maker
    I'm looking for texture makers to help with my mod. If you would like to be accepted just leave a reply with some of your past work. If you help you get some perks inside the mod as well receiving credit when its finally released.
    Posted in: Mods Discussion
  • 0

    posted a message on How do you create a new liquid and register it with forge so things like railcraft tanks can hold it.
    Yes but I'm trying to figure out how to use it.
    Posted in: Modification Development
  • 0

    posted a message on How do you create a new liquid and register it with forge so things like railcraft tanks can hold it.
    Im really not sure how to create a new liquid I also want it to be able to be stored in tail craft tanks if there any way some one can point me in the right direction or possibly show me to a tutorial.
    Posted in: Modification Development
  • 0

    posted a message on [Question]How do i code something to break bedrock without editing base classes?
    I've been trying to modify vanilla minecraft things with out actually changing the base classes and compromising compatibility how can i do such a thing
    Posted in: Modification Development
  • 0

    posted a message on [Forge] Micros Tutorials [Single chest posted, link inside]
    Does any one here know how to use custom packets
    Posted in: Tutorials
  • 0

    posted a message on [Forge] Micros Tutorials [Single chest posted, link inside]
    Quote from microjunk

    Okay, first....what version of MC are you using, these tuts are for MC 1.4.7 and forge1.4.7-6.6.0.491<< the version I have been using. Second are you copying straight from you vanilla source? If so it wouldn't matter what version MC you have so long as you follow what changes I make as the code for the table and the furnace are the same, more or less, since 1.4.5. Lastly, PM me your class files for the table (all of them) in code form and I will try to look at it tomorrow, I work tonight so no dice on getting to it that soon.

    Im not sure exactly how but its fixed. I was copying directly from your own crafting table tutorial and i was using forge 499.

    Now I have a compleatly different question how can i save and int using nbt tags. I am currently using this code to save strings. I was wondering how to save int values

    public void readFromNBT(NBTTagCompound NBTTagCompound)
    {
    	 super.readFromNBT(NBTTagCompound);
    	 this.RedOneX = NBTTagCompound.getIntArray("RedOneX");
    	 this.RedOneY = NBTTagCompound.getString("RedOneY");
    	 this.RedOneZ = NBTTagCompound.getString("RedOneZ");
    }
    
    public void writeToNBT(NBTTagCompound NBTTagCompound)
    {
    	 super.writeToNBT(NBTTagCompound);
    	 this.RedOneX = NBTTagCompound.getString("RedOneX");
    	 this.RedOneY = NBTTagCompound.getString("RedOneY");
    	 this.RedOneZ = NBTTagCompound.getString("RedOneZ");
    }


    EDIT: I must have missed what i was looking for for any one looking for the answer its

    getInteger


    so if you were trying to save an int your would change this
    this.RedOneX = NBTTagCompound.getString("RedOneX");


    to this
    this.RedOneX = NBTTagCompound.getInteger("RedOneX");
    Posted in: Tutorials
  • 0

    posted a message on [Forge] Micros Tutorials [Single chest posted, link inside]
    I continue to get errors on these lines

    (new RecipesTools()).addRecipes(this);
    	 (new RecipesWeapons()).addRecipes(this);
    	 (new RecipesIngots()).addRecipes(this);
    	 (new RecipesFood()).addRecipes(this);
    	 (new RecipesCrafting()).addRecipes(this);
    	 (new RecipesArmor()).addRecipes(this);
    	 (new RecipesDyes()).addRecipes(this);


    as well as on the .add portion of these lines
    this.recipes.add(new RecipesArmorDyes());
    		 this.recipes.add(new RecipesMapCloning());
    		 this.recipes.add(new RecipesMapExtending());
    		 this.recipes.add(new RecipeFireworks());


    Collections.sort(this.recipes, new MagicCraftingTableRecipeSorter(this));


    ShapedRecipes var17 = new ShapedRecipes(var5, var6, var15, par1ItemStack);
    		 this.recipes.add(var17);
    		 return var17;


    this.recipes.add(new ShapelessRecipes(par1ItemStack, var3));


    is it possible for you to help me or am i just making a basic mistake
    Posted in: Tutorials
  • 0

    posted a message on [Forge] Micros Tutorials [Single chest posted, link inside]
    When using your crafting table tutorial I have a error in the crafting manager class at:

    private List recipes = new ArrayList();

    Collections.sort(this.recipes, new MagicCraftingTableRecipeSorter(this));

    this.recipes.add(var17);

    this.recipes.add(new ShapelessRecipes(par1ItemStack, var3));


    for (var6 = 0; var6 < this.recipes.size(); ++var6)
    {
    IRecipe var12 = (IRecipe)this.recipes.get(var6);



    I also get an error when trying to add my gui to the network registry


    public class MyTools {

    private MagicCraftingTableGui MagicCraftingTableGui = new MagicCraftingTableGui();


    @Init
    public void load(FMLInitializationEvent event) {
    NetworkRegistry.instance().registerGuiHandler(this, MagicCraftingTableGui);


    [CODE]/package MyTools;

    import net.minecraft.client.gui.inventory.GuiContainer;
    import net.minecraft.entity.player.InventoryPlayer;
    import net.minecraft.inventory.ContainerWorkbench;
    import net.minecraft.util.StatCollector;
    import net.minecraft.world.World;

    import org.lwjgl.opengl.GL11;

    public class MagicCraftingTableGui extends GuiContainer
    {
    public MagicCraftingTableGui(InventoryPlayer par1InventoryPlayer, World par2World, int par3, int par4, int par5)
    {
    super(new ContainerWorkbench(par1InventoryPlayer, par2World, par3, par4, par5));
    }

    /**
    * Draw the foreground layer for the GuiContainer (everything in front of the items)
    */
    protected void drawGuiContainerForegroundLayer(int par1, int par2)
    {
    this.fontRenderer.drawString(StatCollector.translateToLocal("container.crafting"), 28, 6, 4210752);
    this.fontRenderer.drawString(StatCollector.translateToLocal("container.inventory"), 8, this.ySize - 96 + 2, 4210752);
    }

    /**
    * Draw the background layer for the GuiContainer (everything behind the items)
    */
    protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
    {
    int var4 = this.mc.renderEngine.getTexture("/gui/crafting.png");
    GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
    this.mc.renderEngine.bindTexture(var4);
    int var5 = (this.width - this.xSize) / 2;
    int var6 = (this.height - this.ySize) / 2;
    this.drawTexturedModalRect(var5, var6, 0, 0, this.xSize, this.ySize);
    }
    }
    /[CODE]
    Posted in: Tutorials
  • 0

    posted a message on [Forge] Teleport player
    Weird It worked for me. Where exactly are you trying to get the player to teleport to.
    Posted in: Modification Development
  • 0

    posted a message on [Forge] Teleport player
    Using the player.setPositionAndUpdate(i, j, k); that you commented out i was able to get the player to teleport how that can help im not sure but if you get to values you want to match those peramiters then you can get it to work
    Posted in: Modification Development
  • 0

    posted a message on Server crash log need help
    Im having the same problem. Its keeping me from releasing my mods can anyone help.
    Posted in: Modification Development
  • To post a comment, please .