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
  On 4/21/2020 at 2:25 AM, 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. 

Expand  

 

  On 4/21/2020 at 2:37 AM, 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").

Expand  

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
  On 4/21/2020 at 2:37 AM, 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").

Expand  

 

  On 4/21/2020 at 4:28 AM, 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";
}

 

Expand  

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

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.