Jump to content

Forge Error Reached end of file while parsing


SprengMeister02

Recommended Posts

Hello everyone,

I need help with modding. I have a file for all vars needed in my mod. Looks as following:

1

2

3 public class VarlistNecromance

 

I tried {}, end, ; and all other stuff.

Would be great if somebody knows how to fix this, this is really annoying.

 

Best regards,

SprengMeister02

 

PS: Currently on 1.8, but if I fixed this I will update this mod for ALL versions from 1.7.10 - 1.10.2

In Minecraft, there are creepers ant TNT, but I

am definitely the most explosive thing.

Link to comment
Share on other sites

Post the whole class.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Well,

public class VarlistNecromance

isn't a valid class.

 

If you want a valid, empty class, you need

 

package [...];

public class VarlistNecromance {

}

 

Where the [...] is a package declaration and the file is located there.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



×
×
  • Create New...

Important Information

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