Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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

change your pastebin to forge pastebin and ill help you(my work network block pastebin)

 

 

or use spoilers, even better

 

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

-hydroflame, author of the forge revolution-

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-

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-

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-

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-

  • Author

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();"

 

 

oh right :P

 

 

well ... you should deffinitelly learn what function are

 

but copy paste this

 

String someConfigString = someProperty.getString();

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

-hydroflame, author of the forge revolution-

  • Author

Okay so it works, now do I just have to put stuff into my code for it to register on the config?

  • Author

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.

you cant name EVERYTHING after randomBlockID ... how would the program diffenciate them ?

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

-hydroflame, author of the forge revolution-

  • Author

thing is I didn't though. In the code if you read it there different items/blocks.

jsut rename then to

randomBlockID1

randomBlockID2

randomBlockID3

randomBlockID4

randomBlockID5

randomBlockID6

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

-hydroflame, author of the forge revolution-

no, you have to manually tell him which id is which randomBlockID

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

-hydroflame, author of the forge revolution-

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-

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.