1

Mod Help: Tools

sed11 6/26/12 2:47 pm
175
6/26/2012 11:29 pm
I'm trying to make tools for my Enderbrine mod, and I get no errors except for 2.

One of the errors: (The other is the same error except is a different file for another set of tools.)

src\minecraft\net\minecraft\src\mod_BrineTools.java:5: error: mod_BrineTools is not abstract and does not override abstract method load() in BaseMod
public class mod_BrineTools extends BaseMod
^


It seems the error is coming from just that line of code or just the word "class" because of the arrow thing is pointing to it, but I thought that was how the code was supposed to be written :/


Any help?
Posted by
sed11
Retired Moderator
Level 66 : High Grandmaster Hero
391

  Have something to say?

JoinSign in

3

sed11
06/26/2012 4:10 pm
Level 66 : High Grandmaster Hero
I guess I'll try a different way, I'm actually kind-of new to modding, so I use tutorials to learn how to make something like Blocks or Tools so I can make my own......
1
Fuzzy Wuzzy
06/26/2012 11:29 pm
Level 6 : Apprentice System
and what you should be doing is learning java development starting from hello world and slowly getting better till you have mastered java than work inside another code base.

Copying a persons test doesn't mean you learned the answers.
1
Fuzzy Wuzzy
06/26/2012 3:12 pm
Level 6 : Apprentice System
The error as it is written


mod_BrineTools is not abstract and does not override abstract method load() in BaseMod


mod_brinetools is not a abstract class

and it is not overriding method load() from basemod class

there is no specific way things have to "look" it is programming...

what it is saying...

is you are missing something

Something very specific ... that is mentioned in the error message.

THAT HAS NOTHING TO DO SPECIFIC TO MINECRAFT CODEBASE


... so instead of walking you through and coding your mod for you...
I would suggest you learn programming in java even before attempting to mod another persons codebase.

Otherwise this won't be close to the last error you won't be able to figure out...
1

Welcome