Jump to content

ModLoader.addName applies one name to all items. (X-post)


linkseyi

Recommended Posts

I have a mod that's ported to FML from ModLoader.  Everything's working okay as of now except that when I use both ModLoader.addName and LanguageRegistry.addName, all items in the mod resort to being named the last one applied.

 

public class mod_Tools extends BaseMod
{
  public static lx texToolSword;
  public static lx texToolPickaxe;
  public static lx texToolHelmet;
  public static lx texToolPlate;
  //Ignore the addTool/ArmorMaterial stuff.
  public static final wk ToolSword = new ItemToolSword(160, LinkseyiForgeAdapter.addToolMaterial("Rod", 1, 64, 7.0F, 2, 2)).c("ToolSword");
  public static final wk ToolPickaxe = new ItemToolPickaxe(161, LinkseyiForgeAdapter.addToolMaterial("Rod", 1, 64, 7.0F, 2, 2)).c("ToolPickaxe");
  public static final wk ToolHelmet = new ItemToolHelmet(162, LinkseyiForgeAdapter.addArmorMaterial("DiamondTwo", 7, new int[] { 6, 6, 7, 6 }, , ModLoader.addArmor("DiamondTwo"), 0).c("ToolHelmet");
  public static final wk ToolPlate = new ItemToolPlate(163, LinkseyiForgeAdapter.addArmorMaterial("DiamondTwo", 7, new int[] { 6, 6, 7, 6 }, , ModLoader.addArmor("DiamondTwo"), 1).c("ToolPlate");

  public void load()
  {
    // I've tried using LanguageRegistry too; same results.
    ModLoader.addName(ToolSword, "Tool Sword");
    ModLoader.addName(ToolPickaxe, "Tool Pickaxe");
    ModLoader.addName(ToolHelmet, "Tool Helmet");
    ModLoader.addName(ToolPlate, "Tool Plate");
  }
}

 

In this case all items end up being named "Tool Plate".

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

lol, hipster

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

lol, hipster

 

Hipster? What do you mean by that sir?

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

lol, hipster

 

Hipster? What do you mean by that sir?

I mean that I was into Minecraft before it was cool.  8)

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

 

Thank you, but as this is part of an interactive compiler (http://www.minecraftforum.net/topic/1361604-152-windows-linkseyis-modmaker-create-unique-blocks-items-recipes-mobs-and-models-structures-and-biomes-with-a-simple-gui/#entry16594112), changing around large amounts of code is not practical unless ultimately necessary.  Also, I have tried using the Forge equivalent to addName (LanguageRegsitry.addName) and got the same results.

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

 

Thank you, but as this is part of an interactive compiler (http://www.minecraftforum.net/topic/1361604-152-windows-linkseyis-modmaker-create-unique-blocks-items-recipes-mobs-and-models-structures-and-biomes-with-a-simple-gui/#entry16594112), changing around large amounts of code is not practical unless ultimately necessary.  Also, I have tried using the Forge equivalent to addName (LanguageRegsitry.addName) and got the same results.

If you don't want to use Forge, don't come complaining to Forge when your mod doesn't work.

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

 

Thank you, but as this is part of an interactive compiler (http://www.minecraftforum.net/topic/1361604-152-windows-linkseyis-modmaker-create-unique-blocks-items-recipes-mobs-and-models-structures-and-biomes-with-a-simple-gui/#entry16594112), changing around large amounts of code is not practical unless ultimately necessary.  Also, I have tried using the Forge equivalent to addName (LanguageRegsitry.addName) and got the same results.

If you don't want to use Forge, don't come complaining to Forge when your mod doesn't work.

I don't think you understand.  I am using the ModLoader class in Forge, which should work fine (it's designed to be ModLoader-compatible).

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

 

Thank you, but as this is part of an interactive compiler (http://www.minecraftforum.net/topic/1361604-152-windows-linkseyis-modmaker-create-unique-blocks-items-recipes-mobs-and-models-structures-and-biomes-with-a-simple-gui/#entry16594112), changing around large amounts of code is not practical unless ultimately necessary.  Also, I have tried using the Forge equivalent to addName (LanguageRegsitry.addName) and got the same results.

If you don't want to use Forge, don't come complaining to Forge when your mod doesn't work.

I don't think you understand.  I am using the ModLoader class in Forge, which should work fine (it's designed to be ModLoader-compatible).

 

No, I don't think you understand. YOUR PROBLEM IS COMING FROM MAKING THE MOD IN A MOD MAKER!!!! Since you have done that, it cannot read properly, and editing it is just pointless. So you need to decompile MCP with forge, REWRITE your mod (yes, the whole damn thing because it is already recompiled/reobfuscated) and then recompile/reobfuscate it the normal way.

And ObsequiousNewt is right, don't come complaining about forge related problems if you are making a mod using another API.

 

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

lol, hipster

 

Hipster? What do you mean by that sir?

I mean that I was into Minecraft before it was cool.  8)

 

What does that have to do with me?

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

 

Thank you, but as this is part of an interactive compiler (http://www.minecraftforum.net/topic/1361604-152-windows-linkseyis-modmaker-create-unique-blocks-items-recipes-mobs-and-models-structures-and-biomes-with-a-simple-gui/#entry16594112), changing around large amounts of code is not practical unless ultimately necessary.  Also, I have tried using the Forge equivalent to addName (LanguageRegsitry.addName) and got the same results.

If you don't want to use Forge, don't come complaining to Forge when your mod doesn't work.

I don't think you understand.  I am using the ModLoader class in Forge, which should work fine (it's designed to be ModLoader-compatible).

 

No, I don't think you understand. YOUR PROBLEM IS COMING FROM MAKING THE MOD IN A MOD MAKER!!!! Since you have done that, it cannot read properly, and editing it is just pointless. So you need to decompile MCP with forge, REWRITE your mod (yes, the whole damn thing because it is already recompiled/reobfuscated) and then recompile/reobfuscate it the normal way.

And ObsequiousNewt is right, don't come complaining about forge related problems if you are making a mod using another API.

No, I made the ModMaker.  I'm trying to update it to be Forge-compatible (sorry for the misunderstanding).  I can rewrite things to be "completely Forge", but I'd rather know what the immediate problem is before I do that.

Link to comment
Share on other sites

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

 

Thank you, but as this is part of an interactive compiler (http://www.minecraftforum.net/topic/1361604-152-windows-linkseyis-modmaker-create-unique-blocks-items-recipes-mobs-and-models-structures-and-biomes-with-a-simple-gui/#entry16594112), changing around large amounts of code is not practical unless ultimately necessary.  Also, I have tried using the Forge equivalent to addName (LanguageRegsitry.addName) and got the same results.

If you don't want to use Forge, don't come complaining to Forge when your mod doesn't work.

I don't think you understand.  I am using the ModLoader class in Forge, which should work fine (it's designed to be ModLoader-compatible).

 

No, I don't think you understand. YOUR PROBLEM IS COMING FROM MAKING THE MOD IN A MOD MAKER!!!! Since you have done that, it cannot read properly, and editing it is just pointless. So you need to decompile MCP with forge, REWRITE your mod (yes, the whole damn thing because it is already recompiled/reobfuscated) and then recompile/reobfuscate it the normal way.

And ObsequiousNewt is right, don't come complaining about forge related problems if you are making a mod using another API.

No, I made the ModMaker.  I'm trying to update it to be Forge-compatible (sorry for the misunderstanding).  I can rewrite things to be "completely Forge", but I'd rather know what the immediate problem is before I do that.

I would recommend rewriting things to be "completely Forge" first. I don't know what the specific problem is, but I conjecture you need to tell Forge the mod context.

First thing first, learn to code using Forge!!!!!!

 

Don't use mod porters, you will most likely get more errors like this. What you need to do is just recode it all into Forge. And its not that hard to do so. All you have to do is change the base mod file (in ModLoader, defined as mod_***) to a Forge one, and then just change all your ModLoader methods to the Forge equivalents. Entity, Item, and Block files will all be the same, the only difference being how you register them (not very different at all since the 1.5 update)  and the name registry, entity registry etcetera.

 

I hope I don't seem like a modder fanatic or something that is the right word for this situation..

lol, hipster

 

Hipster? What do you mean by that sir?

I mean that I was into Minecraft before it was cool.  8)

 

What does that have to do with me?

"...or something that is the right word for this situation"

Not that "hipster" especially fits, I just felt a need to say "lol, hipster"

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

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

    • https://youtube.com/shorts/gqLTSMymgUg?si=5QOeSvA4TTs-bL46
    • CubeHaven is a SMP server with unique features that can't be found on the majority of other servers! Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132 3 different stores: - CubeHaven Store: Our store to purchase using real money. - Bitcoin Store: Store for Bitcoin. Bitcoin can be earned from playing the server. Giving options for players if they want to spend real money or grind to obtain exclusive packages. - Black Market: A hidden store for trading that operates outside our traditional stores, like custom enchantments, exclusive items and more. Some of our features include: Rank Up: Progress through different ranks to unlock new privileges and perks. 📈 Skills: RPG-style skill system that enhances your gaming experience! 🎮 Leaderboards: Compete and shine! Top players are rewarded weekly! 🏆 Random Teleporter: Travel instantly across different worlds with a click! 🌐 Custom World Generation: Beautifully generated world. 🌍 Dungeons: Explore challenging and rewarding dungeons filled with treasures and monsters. 🏰 Kits: Unlock ranks and gain access to various kits. 🛠️ Fishing Tournament: Compete in a friendly fishing tournament! 🎣 Chat Games: Enjoy games right within the chat! 🎲 Minions: Get some help from your loyal minions. 👥 Piñata Party: Enjoy a festive party with Piñatas! 🎉 Quests: Over 1000 quests that you can complete! 📜 Bounty Hunter: Set a bounty on a player's head. 💰 Tags: Displayed on nametags, in the tab list, and in chat. 🏷️ Coinflip: Bet with other players on coin toss outcomes, victory, or defeat! 🟢 Invisible & Glowing Frames: Hide your frames for a cleaner look or apply a glow to it for a beautiful look. 🔲✨[ Player Warp: Set your own warp points for other players to teleport to. 🌟 Display Shop: Create your own shop and sell to other players! 🛒 Item Skins: Customize your items with unique skins. 🎨 Pets: Your cute loyal companion to follow you wherever you go! 🐾 Cosmetics: Enhance the look of your character with beautiful cosmetics! 💄 XP-Bottle: Store your exp safely in a bottle for later use! 🍶 Chest & Inventory Sorting: Keep your items neatly sorted in your inventory or chest! 📦 Glowing: Stand out from other players with a colorful glow! ✨ Player Particles: Over 100 unique particle effects to show off. 🎇 Portable Inventories: Over virtual inventories with ease. 🧳 And a lot more! Become part of our growing community today! Discord: https://cubehaven.net/discord Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132
    • # Problematic frame: # C [libopenal.so+0x9fb4d] It is always the same issue - this refers to the Linux OS - so your system may prevent Java from working   I am not familiar with Linux - check for similar/related issues  
    • Create a new instance and start with Embeddium/Oculus and Valkyrien Skies Try different builds of Embeddium/Valkyrien Skies until you find a working combination - then add the rest of your mods one by one or in groups
  • Topics

×
×
  • Create New...

Important Information

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