Jump to content

1.5 updating so much fun


ashtonr12

Recommended Posts

error one;

the error is under .adddungeonLoot i assume this has been reworded but couldnt find the replacement.

DungeonHooks.addDungeonLoot(new ItemStack(Item.diamond.ItemID), 1, 1, 1);

error two;

package ashtonsmod.common;

import static net.minecraftforge.common.ForgeDirection.EAST;
import static net.minecraftforge.common.ForgeDirection.NORTH;
import static net.minecraftforge.common.ForgeDirection.SOUTH;
import static net.minecraftforge.common.ForgeDirection.WEST;

import java.util.Random;

import javax.swing.text.html.parser.Entity;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class BlockStickyGrips extends Block
{
    protected BlockStickyGrips(int par1)
    {
        super(par1, Material.circuits);
        this.setCreativeTab(CreativeTabs.tabDecorations);
    }

    /**
     * Returns a bounding box from the pool of bounding boxes (this means this box can change after the pool has been
     * cleared to be reused)
     */
    public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
    {
        this.setBlockBoundsBasedOnState(par1World, par2, par3, par4);
        return super.getCollisionBoundingBoxFromPool(par1World, par2, par3, par4);
    }
    
    public void onEntityCollidedWithBlock(World par1World, int par2, int par3, int par4, Entity par5Entity)
    {
    	par5Entity.motionY = 0.2;
    	par5Entity.fallDistance = 0.0F;
    }

    @SideOnly(Side.CLIENT)

    /**
     * Returns the bounding box of the wired rectangular prism to render.
     */
    public AxisAlignedBB getSelectedBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
    {
        this.setBlockBoundsBasedOnState(par1World, par2, par3, par4);
        return super.getSelectedBoundingBoxFromPool(par1World, par2, par3, par4);
    }

    /**
     * Updates the blocks bounds based on its current state. Args: world, x, y, z
     */
    public void setBlockBoundsBasedOnState(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
    {
        this.updateLadderBounds(par1IBlockAccess.getBlockMetadata(par2, par3, par4));
    }

    /**
     * Update the ladder block bounds based on the given metadata value.
     */
    public void updateLadderBounds(int par1)
    {
        float f = 0.125F;

        if (par1 == 2)
        {
            this.setBlockBounds(0.0F, 0.0F, 1.0F - f, 1.0F, 1.0F, 1.0F);
        }

        if (par1 == 3)
        {
            this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, f);
        }

        if (par1 == 4)
        {
            this.setBlockBounds(1.0F - f, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
        }

        if (par1 == 5)
        {
            this.setBlockBounds(0.0F, 0.0F, 0.0F, f, 1.0F, 1.0F);
        }
    }

    /**
     * Is this block (a) opaque and (b) a full 1m cube?  This determines whether or not to render the shared face of two
     * adjacent blocks and also whether the player can attach torches, redstone wire, etc to this block.
     */
    public boolean isOpaqueCube()
    {
        return false;
    }

    /**
     * If this block doesn't render as an ordinary block it will return False (examples: signs, buttons, stairs, etc)
     */
    public boolean renderAsNormalBlock()
    {
        return false;
    }

    /**
     * The type of render function that is called for this block
     */
    public int getRenderType()
    {
        return 8;
    }

    /**
     * Checks to see if its valid to put this block at the specified coordinates. Args: world, x, y, z
     */
    public boolean canPlaceBlockAt(World par1World, int par2, int par3, int par4)
    {
        return par1World.isBlockSolidOnSide(par2 - 1, par3, par4, EAST ) ||
               par1World.isBlockSolidOnSide(par2 + 1, par3, par4, WEST ) ||
               par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH) ||
               par1World.isBlockSolidOnSide(par2, par3, par4 + 1, NORTH);
    }

    /**
     * Called when a block is placed using its ItemBlock. Args: World, X, Y, Z, side, hitX, hitY, hitZ, block metadata
     */
    public int onBlockPlaced(World par1World, int par2, int par3, int par4, int par5, float par6, float par7, float par8, int par9)
    {
        int j1 = par9;

        if ((j1 == 0 || par5 == 2) && par1World.isBlockSolidOnSide(par2, par3, par4 + 1, NORTH))
        {
            j1 = 2;
        }

        if ((j1 == 0 || par5 == 3) && par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH))
        {
            j1 = 3;
        }

        if ((j1 == 0 || par5 == 4) && par1World.isBlockSolidOnSide(par2 + 1, par3, par4, WEST))
        {
            j1 = 4;
        }

        if ((j1 == 0 || par5 == 5) && par1World.isBlockSolidOnSide(par2 - 1, par3, par4, EAST))
        {
            j1 = 5;
        }

        return j1;
    }

    /**
     * Lets the block know when one of its neighbor changes. Doesn't know which neighbor changed (coordinates passed are
     * their own) Args: x, y, z, neighbor blockID
     */
    public void onNeighborBlockChange(World par1World, int par2, int par3, int par4, int par5)
    {
        int i1 = par1World.getBlockMetadata(par2, par3, par4);
        boolean flag = false;

        if (i1 == 2 && par1World.isBlockSolidOnSide(par2, par3, par4 + 1, NORTH))
        {
            flag = true;
        }

        if (i1 == 3 && par1World.isBlockSolidOnSide(par2, par3, par4 - 1, SOUTH))
        {
            flag = true;
        }

        if (i1 == 4 && par1World.isBlockSolidOnSide(par2 + 1, par3, par4, WEST))
        {
            flag = true;
        }

        if (i1 == 5 && par1World.isBlockSolidOnSide(par2 - 1, par3, par4, EAST))
        {
            flag = true;
        }

        if (!flag)
        {
            this.dropBlockAsItem(par1World, par2, par3, par4, i1, 0);
            par1World.func_94571_i(par2, par3, par4);
        }

        super.onNeighborBlockChange(par1World, par2, par3, par4, par5);
    }

    /**
     * Returns the quantity of items to drop on block destruction.
     */
    public int quantityDropped(Random par1Random)
    {
        return 1;
    }

    @Override
    public boolean isLadder(World world, int x, int y, int z)
    {
        return true;
    }


@Override
public String getTextureFile(){
return CommonProxy.blocks_png;
}}

the errors are under .montionY and .fallDistance , i dont know why these are errors they work perfectly in my other blocks, maybe something to do with this block being a ladder.

 

error three

package ashtonsmod.common;

import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.monster.EntityBlaze;
import net.minecraft.entity.projectile.EntityThrowable;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;

public class EntityInkBall extends EntityThrowable
{
    public EntityInkBall(World par1World)
    {
        super(par1World);
    }

    public EntityInkBall(World par1World, EntityLiving par2EntityLiving)
    {
        super(par1World, par2EntityLiving);
    }

    public EntityInkBall(World par1World, double par2, double par4, double par6)
    {
        super(par1World, par2, par4, par6);
    }

    /**
     * Called when this EntityThrowable hits a block or entity.
     */
    protected void onImpact(MovingObjectPosition par1MovingObjectPosition)
    {
        if (par1MovingObjectPosition.entityHit != null)
        {
            byte var2 = 0;

            if (par1MovingObjectPosition.entityHit instanceof EntityBlaze)
            {
                var2 = 3;
            }

            par1MovingObjectPosition.entityHit.attackEntityFrom(DamageSource.causeThrownDamage(this, this.func_85052_h()), 2);    		
            }

        for (int var3 = 0; var3 < 8; ++var3)
        {
            this.worldObj.spawnParticle("snowballpoof", this.posX, this.posY, this.posZ, 0.0D, 0.0D, 0.0D);
        }

        if (!this.worldObj.isRemote)
        {
            this.setDead();
        }
    }
}

this error is under func_85052_h i assume the function has been renamed once again couldnt find the replacement anywhere.

 

i have searched the internet for answers to these problems and have found none i am trying to use this place as a last resort because some of the people on here get a bit cranky when i make noob mistakes or basic java error because of my lack of knowledge and for this i am sorry. if anyone could please help me solve these errors i would be very grateful. this is my first major update too so  if there is any obvious updating mistakes let me know.

 

P.S

i know i haven't updated my item or block textures yet i am doing that now i just thought i would give you lovely people some time to have a looky at these ones whilst i do :)

 

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

ok so i have done all my textures but i just cannot get that dungeon chest hook thing

the best i have is

	 ChestGenHooks.addDungeonLoot(new ItemStack(ashtonsmod.LSboots), 5, 1, 1);

 

but its missing an argument and the visibility of the hook is private anywho ?

im stuck...

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

i thought about that class

and i saw

public static final String DUNGEON_CHEST            = "dungeonChest";

and assumed that dungeonChest was the catagory but that was wrong so i tried DUNGEON_CHEST but that didnt work either :/

i am trying :(

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

OK sorry I wasn't specific enough the code is invalid an red error line appears under the area where i am meant to put a category no matter what I seem to put except null but that would defeat the point correct?

 

maybe it starts like this?

ChestGenHooks.DUNGEON_CHEST

but i dont know how to finish the line if this is the case.

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

i know but if i type

 

ChestGenHook. it suggest .DUNGEON_CHEST and .addItem and viable methods for adding loot to a dungeon chest.

 

if i choose .DUNGEONCHEST i cant fingure out how to finish the line

if i choose . add Item the generated line is

 

ChestgenHook.addItem(catagory, item);

 

then i change it too

 

ChestGenHook.addItem(catagory, ashtonsmod.IngotBush,1,1,1);

 

and i cannot figure out a catagory variable that does not become an error.

the 1,1,1 is the max, min and chance correct? that is not an error i just wanted to check.

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

no need to start getting upset with each other :)

i do not know very much about java at it isnt my fualt that they changed the dungeon hooks thing but all i am looking for the new solution, last night i got this far;

 

chestGenHooks.additem("dungenChest", new WeightedRandomChestContent(1,1,1,1,1))

 

and i know what some of the didgets do but not all of them and i cant find the right order and i dnot know if this is actually correct it just gives no errors :)

(the didgets are maxstacksize, minstacksize,chance and i dont knwo the other two and i dont knwo the order)

if this is incorrect could someone just post the correct one? if it is correct can someone tell me the order of the numbers and what they each mean please?

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

its not that bad of an idea as it is something you have an enthusiasm towards, the learning style is different.

if you learn java first then you just have to put in place what you have learnt, if you learn by modding then you just have to learn part by part. ie learn how to add a custom block, then a custom item, etc

and then in your next mod you already know how to do these things and if you forget you can refer to your old one :)

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

I am leaning java from Moding

That is a very very bad idea.
and that problem is in 1.5 they changed his hook for the dungeons and I have a mod that's going good 50 downloads but I am still updating to 1.5

It was depreciated looong before (if you weren't learning java from modding you'd know what that means), so people had time to get away from it.

Was not depreciated in 1.4.7 or many forge tutorials good for 1.4.7 on the wiki were wrong because I was going to use it for my spawner item.

Link to comment
Share on other sites

  • 2 weeks later...

Having problems with Generated Loots in chests: The Items spawn correctly, however upon right Clicking the item in your Inventory that Item disappears (Gets removed). This occurs not all the time.

 

Here is an Example of the Code I use placed in my Load() Method.

 

ChestGenHooks.getInfo(ChestGenHooks.BONUS_CHEST).addItem(new WeightedRandomChestContent(new ItemStack(mod_HarkenScythe.HSNecronomiconPage, 1), 0, 1, 5));

 

 

Yes I know what everything means, just I am coming across this odd glich.

Link to comment
Share on other sites

I know c which is what java is made off of I understand java

 

If you would know anything about coding, software architecture and programming languages, you would know how stupid this sentence is ... I am professionally coding within an legacy code base written in c and I'm writing GUI's in c# and I have build and coded software tools using java and I can tell you, if you know c, apart from basic structures like loops and branching, you do know nothing about java... and if you know "just" java, you'll probably get hurt if you get your hands dirty in pointer arithmetic...

 

with out the need to learn it I can help but Realy stop bashing first time mod makes in the face with "Go learn java and then come back." That makes people mad.

 

That is the only way to do it. Learn java (and as many other languages as you can), learn the ideas of oop, get to know about patterns, read about this patterns, use them, learn about the intrinsic attributes of the languages you are using, LEARN TO PRODUCE CLEAN CODE!!!, learn about software architecture and then and only then try to produce a mod that's more than yet another funny additional sword mod ...

 

And if you still don't get it after 20odd posts and still think you'll become an instant coding hero just by copying some lines from a tutorial into your main mod class, the tone you're addressed with will get a bit harsher, live with it ...

 

Btw, tutorials, I use them too, but it helps if you know why what is done is done, so you can vary the code and actually use the knowledge gained by following the tutorial. If you just copy paste the stuff found in the tutorials, not you will be the author of your mod, but the different tutorial authors and you have gained nothing ...

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • tried it, it worked! Thank you kind stranger. Still a weird bug with that version of forge, but everything works now so it's fine.
    • New to forge modding, I'm currently trying to make a client side only mod that basically just reproduces the numbers for entities in FOV and total entity count shown in the F3 toggle (E: # in fov/# total). Basically just trying to take these numbers and display them in the center of the screen (without having F3 open) so they can be seen constantly.Been primarily learning forge using ChatGPT but it seems to spew out incorrect code over and over again when I ask it how it would do something like this (probably confusing versions and such). Not sure if these numbers can be directly accessed or not or if its more complicated than that.   This is my current code I basically just need to implement the 2 methods at the bottom. Any info/help is appreciated. import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; import net.minecraft.client.Camera; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiGraphics; import net.minecraft.client.renderer.culling.Frustum; import net.minecraft.world.entity.Entity; import net.minecraft.world.phys.AABB; import net.minecraft.world.phys.Vec3; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.client.event.RenderGuiOverlayEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; import net.minecraft.world.entity.Entity; import net.minecraft.client.multiplayer.ClientLevel; @Mod.EventBusSubscriber(modid = "myforgehudmod", value = Dist.CLIENT) public class MyCustomHUD { @SubscribeEvent public static void onRenderHUD(RenderGuiOverlayEvent.Post event) { Minecraft minecraft = Minecraft.getInstance(); GuiGraphics guiGraphics = event.getGuiGraphics(); int screenWidth = minecraft.getWindow().getGuiScaledWidth(); int screenHeight = minecraft.getWindow().getGuiScaledHeight(); int totalEntities = countTotalEntities(minecraft); int entitiesInFOV = countEntitiesInFOV(minecraft); String hudText = entitiesInFOV + " / " + totalEntities; int textWidth = minecraft.font.width(hudText); int x = (screenWidth / 2) - (textWidth / 2); int y = screenHeight / 2; y = y + 10; // x,y is directly below crosshair by 10 pixels with centered text guiGraphics.drawString(minecraft.font, hudText, x, y, 0xFFFFFF); } private static int countTotalEntities(Minecraft minecraft) { return 0; } private static int countEntitiesInFOV(Minecraft minecraft) { return 0; } }  
    • Please let me know if there is a good solution: Hey Y'all, sorry to bother you, but I believe I'm getting an error between jurassicworld reborn and jurassicraft when I'm attempting to open my world. The world used to work with both mods active, and so I'm posting here to see why it doesn't work anymore, and if there is a solution to fix it that doesn't include taking out either, as doing that will take out a big part/amount of blocks out of my world. If not, then please let me know. Also, please let me know if more info is needed, as this was all of the crash report that would fit. Thanks for the help, look forward to hearing from you! Crash report Link: https://pastebin.com/K1H0qsmW
    • The game crashed whilst initializing game Error: java.lang.IllegalAccessError: class net.minecraft.client.Options tried to access private field net.minecraft.client.Minecraft.f_91036_ (net.minecraft.client.Options and net.minecraft.client.Minecraft are in module [email protected] of loader 'TRANSFORMER' @4232b34a)    wasnt allowed to put up the whole crash report but i rly want help
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.