From the Ground Up - Not Understanding - Help would be Awesome!
ChipsAhoyMcCoy16 opened this issue ยท 7 comments
Alright.
I attempt to follow the CraftTweaker support from here:
https://github.com/TheRActivator/From-the-Ground-Up/wiki/CraftTweaker-Support#pages
I do not exactly understand. I keep receiving the error for no such member.
I know I have given very little. This is my first post and I am struggling to understand.
Okay. Let me try to start over with what I have attempted, now that I am a little level headed now and not so frustrated.
Giving some better background knowledge, and some obvious things.
I wanted to use the "From the Ground Up" mod in my minecraft. I also wanted to use other mods and combine the "From the Ground Up" experience with other mods.
I saw that "From the Ground Up" had "Native CraftTweaker Support".
So in turn, I followed this link to the code to use to allow that addition of pages and technologies:
https://github.com/TheRActivator/From-the-Ground-Up/wiki/CraftTweaker-Support#pages
I then followed the tutorials from here:
http://minetweaker3.powerofbytes.com/wiki/Main_Page
That way, I would have some knowledge of how to work this mod.
Also want to add, I also added the mod, "ModTweaker".
So the process I went through, was that I added the basic code for adding a new page, just to test the mod.
The specific code was:
mods.ftgu.Page.addPage
But once I got a weird Java exception error, I realized I needed a ;
The next change to the code was to this:
mods.ftgu.Page.addPage;
So, I also realize that this code requires an argument. Now I am new to coding and I do not fully understand the definition of an argument and what they are supposed to look like.
But the next piece of code I tried was:
import mods.ftgu.Page.addPage("Test Page");
I hope this is much more to work off of. Thank you for the reply. If you need more info, just ask!
You just have to do mods.ftgu.Page.addPage("Test Page");
, no import required.
Import is used like this:
import mods.ftgu.Page;
Page.addPage("Test Page 1");
Page.addPage("Test Page 2");
I think, at least
Are you sure you're running the latest version of From the Ground Up ?
The error in your screens remind me this: #23 (Actually fixed by TheRActivator in FtGU 1.1.5).
@ChipsAhoyMcCoy16 yeah you might be using an outdated version if it doesn't recognise ftgu
as a member