Jump to content

Recommended Posts

Posted (edited)

Hello I'm just trying to follow the forge doc but I can't get my mod detected.

I'm workin on Forge 1.15.2, I have a mistake on the modid, he tells me he's not recognized but why ? 

I've try to restart my IDE but is useless ! I think it's a silly mistake. I'm sorry, but I can't find it. 

 

error forge 2.PNG

error forge 3.PNG

error forge.PNG

Edited by floflolol
Posted

First of all, keep in mind that mod ids have to be entirely lowercase.

As for the error, it's value="modid" not modid="modid". You can also just type the mod id directly, so: @Mod("modid").

I'm eager to learn and am prone to mistakes. Don't hesitate to tell me how I can improve.

Posted
1 hour ago, floflolol said:

Hello I'm just trying to follow the forge doc but I can't get my mod detected.

I'm workin on Forge 1.15.2, I have a mistake on the modid, he tells me he's not recognized but why ? 

I've try to restart my IDE but is useless ! I think it's a silly mistake. I'm sorry, but I can't find it. 

 

1 hour ago, imacatlolol said:

First of all, keep in mind that mod ids have to be entirely lowercase.

As for the error, it's value="modid" not modid="modid". You can also just type the mod id directly, so: @Mod("modid").

Your modid needs to be all lowercase, as imacatlol said.

 

Quick Tip:

A tactic that I use in order to make sure that my modid is consistent throughout my code is simply create it as a static string in my "main" class, and then just reference it throughout the rest of the mod as MainMod.MODID . This way, I don't accidentally misspell it later on, and have to dig through my logs and code to find out what is causing such a simple error.

@Mod(MainClass.MODID)
public class MainClass
{
    public static final String MODID = "modid";
}

 

Follow these rules when talking to me, and we'll get along fine.

1).I know Java fairly well. I don't know as much about modding. They are not the same, don't compare them.

2). I consider myself to always be learning. I make mistakes, you make mistakes. Who doesn't?

3). Insult me, and I will leave the thread. I have a real life, I don't have time to throw petty insults in a Minecraft Modding forum.

 

ModMCdl - Co-Founder and Director of Design for Artemis Game Studios

Posted
7 hours ago, imacatlolol said:

First of all, keep in mind that mod ids have to be entirely lowercase.

As for the error, it's value="modid" not modid="modid". You can also just type the mod id directly, so: @Mod("modid").

 

5 hours ago, ModMCdl said:

 

Your modid needs to be all lowercase, as imacatlol said.

 

Quick Tip:

A tactic that I use in order to make sure that my modid is consistent throughout my code is simply create it as a static string in my "main" class, and then just reference it throughout the rest of the mod as MainMod.MODID . This way, I don't accidentally misspell it later on, and have to dig through my logs and code to find out what is causing such a simple error.


@Mod(MainClass.MODID)
public class MainClass
{
    public static final String MODID = "modid";
}

 

Thank you for your help ! But I tried and it's not working. 

error forge 5.PNG

error forge 6.PNG

error forge 7.PNG

error forge 4.PNG

Posted
14 minutes ago, diesieben07 said:

Please start with the MDK.

mcmod.info is not used anymore. You need a mods.toml, as shown in the MDK example.

Yes sorry, I just added it and configured it but it still doesn't seem to work 

error forge 8.PNG

Posted
3 minutes ago, diesieben07 said:

That is not the correct location for the mods.toml file. Again, please refer to the MDK example.

Oh ! I thought the META-INF was optional! I'm really sorry, thanks anyway because it works now . ?

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



×
×
  • Create New...

Important Information

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