Jump to content

Help with fixing two errors


Asip

Recommended Posts

Hello so recently I was using the tutorial on advanced config files, and I added the things in there to my already made mod's main file but I'm getting two errors, I'm still new to coding mods, but could I get some help with this. I apologise also for how unorganized my src code is also. The errors I get are:

Description Resource Path Location Type

The field Property.value is not visible topazitem.java /Minecraft/src/Asip/topaz line 91 Java Problem

and

Description Resource Path Location Type

The import net.minecraft.src.forge cannot be resolved topazitem.java /Minecraft/src/Asip/topaz line 31 Java Problem

 

Now I don't really understand how I could fix them, if anyone could tell me, well yea thanks.

http://paste.minecraftforge.net/view/e63e2344

Link to comment
Share on other sites

well first

The import net.minecraft.src.forge cannot be resolved  topazitem.java  /Minecraft/src/Asip/topaz  line 31  Java Problem

 

you have an import that doesnt exists

 

that kinda like saying in one of your files

import derp.herp

when you have nothing called derp.herp

 

go to that file and press

ctrl+shift+o    (the letter o not zero)

 

looking into the 2nd

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

The field Property.value is not visible  topazitem.java  /Minecraft/src/Asip/topaz  line 91  Java ProblemThe field Property.value is not visible

 

you're trying to access a variable that has a private modifier

you shouldnt be doing this

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

im guessing they are using an older version as

net.minecraftforge.src.forge.Property doesnt exists

we only have a net.minecraftforge.common.property

and with this one, the value is prive so you cannot access it

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

well the Property class has some function to get values from it

getBoolean();

getBooleanList();

getInt();

getIntList();

getString();

getStringList();

getDouble()

getDoubleList();

 

 

just call the one you need.

 

(if that wasnt clear please put your topazitem class here so i will point you the correct method to use)

 

ps: for your information the convention is to use CapitalForEveryFirstWordInClassNames

so it should be called TopazItem but this wont affect the code, its just convention

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

Okay uhm, btw that thing I posted was my topazitem.java thing. Also I don't fully understand what you mean

 

"getBoolean();

getBooleanList();

getInt();

getIntList();

getString();

getStringList();

getDouble()

getDoubleList();"

 

 

Link to comment
Share on other sites

Could I get some more help, when adding blocks/items to my config file, I get errors:

 

Description Resource Path Location Type

Duplicate local variable randomBlockID TopaznMore.java /Minecraft/src/Asip/topaz line 76 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomBlockID TopaznMore.java /Minecraft/src/Asip/topaz line 77 Java Problem

 

 

Description Resource Path Location Type

Duplicate local variable randomBlockID TopaznMore.java /Minecraft/src/Asip/topaz line 78 Java Problem

 

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 81 Java Problem

 

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 82 Java Problem

 

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 83 Java Problem

 

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 84 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 85 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 86 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 87 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 88 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 89 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 90 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 91 Java Problem

 

Description Resource Path Location Type

Duplicate local variable randomItemID TopaznMore.java /Minecraft/src/Asip/topaz line 92 Java Problem

 

 

 

 

Heres my code:

http://paste.minecraftforge.net/view/0be0996d

The errors have to do with the randomItemID

and randomBlockID

if anyone could tell me the problem I'd be grateful.

Link to comment
Share on other sites

int randomBlockID = config.getBlock("rubyblock", 3622).getInt();

 

and in another function

 

 rubyblock= new TopazBlock(3622, "rubyblock")

 

you realise your code isnt doing anything right ? basicly you could remove the first part about the config and nothign woudl change

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

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.