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

I have made a new weapon but the texture isn't loading. I have the file structure correct and the file named but it wont load, where am I going wrong? I'm using minecraft 1.6.4 and recommended forge version 9.11.1.916.

Here is my code to load my texture:

 

@SideOnly(Side.CLIENT)

public void registerIcons(IconRegister par1IconRegister)

{

this.itemIcon = par1IconRegister.registerIcon("IronClaymore");

}

Hmm... where to start?

 

First, where IS your file?

 

Second, if you're putting it in any of the following:

 

- Straight into the project folder

- (default package)

 

You have the wrong file structure!

 

And Third:

 

Are you putting them in 1.6.4.jar?

 

Option A) If 2 or 3 apply to you, you're putting them in the wrong place! Make a new package called "assets.minecraft.textures.items" and put the texture in there.

 

Option B) If you want them in a folder of just YOUR mod's textures, put change:

 

         this.itemIcon = par1IconRegister.registerIcon("IronClaymore");

 

to

 

         this.itemIcon = par1IconRegister.registerIcon("(insertModId):IronClaymore");

 

-Mitchellbrine

 

Minecraft can do ANYTHING, it's coded in Java and you got the full power of Java behind you when you code. So nothing is impossible.

It may be freaking fucking hard though, but still possible ;)

 

If you create a topic on Modder Support, live by this motto:

I don't want your charity, I want your information

Awesome, glad I could help!

-Mitchellbrine

 

Minecraft can do ANYTHING, it's coded in Java and you got the full power of Java behind you when you code. So nothing is impossible.

It may be freaking fucking hard though, but still possible ;)

 

If you create a topic on Modder Support, live by this motto:

I don't want your charity, I want your information

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.