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.)
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?
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?
3
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......
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.
Copying a persons test doesn't mean you learned the answers.
The error as it is written
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.
... 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...
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...
