Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hi,

I try to make a new bow but I watch videos but any video no on 1.7.2.

I trying ItemBow.class use but the texture not working  :'(

What can i do? Can anyone help me how can make a new bow in 1.7.2?

Thanks  :)

 

  • Author

Thanks you :)

But 2 errors reaming  :-[  1 errors reaming

My bow texture not working

And the second error is

5iulpwjh0qt9m234cfgk.png

The animation is not see very well...

Sorry for my bad English I am Hungarian

That's because the normal bow animation is a hardcoded one only useable for the vanilla code.

 

In this topic a solution is offered:

 

http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/modification-development/1437164-1-6-4-forge-bow-texture-not-working

 

And it might just solve your rotation problem, which is probably caused by the animation not working thus rendering a standard item.

  • Author

this.iconArray = par1IconRegister.registerIcon((this.getUnlocalizedName().substring(4)) + "_" + bowPullIconNameArray);

I can't find it in my code :(

Sorry I am verry beginner

 

 

I gave it a quick test since I wanted to see whether this code was still viable in 1.7.10. I hadn't gotten around to fixing a syringe in my own mod so this was an excellent opportunity.

 

This animates the provided textures.

@Override
    @SideOnly(Side.CLIENT)
    public IIcon getIcon(ItemStack stack, int renderPass, EntityPlayer player, ItemStack usingItem, int useRemaining) {
        if (usingItem == null) { return itemIcon; }
        int ticksInUse = stack.getMaxItemUseDuration() - useRemaining;

        if (ticksInUse > 18) {
              return iconArray[2];
        } else if (ticksInUse > 14) {
            return iconArray[1];
        } else if (ticksInUse > 0) {
            return iconArray[0];
        } else {
            return itemIcon;
        }
    }

 

As coolAlias said, set this.setFull3D() in constructor

 

and provide the texture with

public static final String[] SyringePullIconNameArray = new String[] {"pulling_0", "pulling_1", "pulling_2"};
    @SideOnly(Side.CLIENT)
    private IIcon[] iconArray;

 

and this

 

 @SideOnly(Side.CLIENT)
    @Override
    public void registerIcons(IIconRegister parIconRegister)
    {
        this.itemIcon = parIconRegister.registerIcon(MODID + ":" + "basesyringe");
        this.iconArray = new IIcon[syringePullIconNameArray.length];

        for (int i = 0; i < this.iconArray.length; ++i)
        {
            this.iconArray[i] = parIconRegister.registerIcon(MODID + ":" + "basesyringe" +  "_" + SyringePullIconNameArray[i]);
        }
    }

 

I gave you a lot, which is not my habit unless I see that the person knows java/modding/does effort, but at least I now know where to refer to once there is a similar question asked here.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.