-
Posts
2618 -
Joined
-
Last visited
-
Days Won
37
Everything posted by Ugdhar
-
1.12 is no longer supported on these forums due to age. Please update to a modern version to receive support here. More information on supported versions can be found in the LTS link at the top of every page.
-
[1.15.2] Command doesn't exist after inputting arguments
Ugdhar replied to MyRedAlien43's topic in Modder Support
Did you launch the project in debug mode? I don't know how intellij does it, but I know with eclipse you have to run the project in debug mode, not normal run, to get breakpoints to work. If it still doesn't break, set a breakpoint somewhere you KNOW the code is reaching, just to make sure it's debugging properly. Beyond that not sure about commands, not something I've messed with yet, but if you can get debug to work I'm sure that'll help! -
Please do not post screenshots of code, they are near impossible to read without bleeding eyes. Either use spoiler tags (better), or post your project as a github repo so it can be cloned and built (best). You will likely get more assistance if you post your code as text and not pictures
-
There is no class for the Obsidian block, it is just an instance of the Block class. There is no BlockObsidian class, and block classes are named <NAME>Block, i.e. it would be called ObsidianBlock (if it existed). As far as I can tell, if a block is part of the portal frame is determined in the IForgeBlock isPortalFrame method which returns true if the passed blockstate is Obsidian. I'm not actively trying to create a portal myself, but if I were that's pretty much where I'd get started. Also be sure to look at the Teleporter class.
-
You should create your own topic, with a little bit more detail what you are trying to do, and what you have done. Please also keep in mind that versions below 1.14 are no longer supported on these forums.
-
Make sure your mods.toml is complete, and references your mod and not examplemod (if you just edited the one that came with examplemod). If you think it's correct, post it here (or better yet a link to a github repo)
-
Cannot join server I purchased 1.12.2, has Forge and mods.
Ugdhar replied to Isaacdevil's topic in Support & Bug Reports
1.12 is no longer supported on these forums due to age. Please update to a modern version to receive support here. More than likely this thread will be locked when a moderator sees it. More information on supported versions can be found in the LTS link at the top of every page. -
Yup, looks correct to me. Sorry, but I'm unsure what's happening there
-
The EAQ explains about posting logs, it's the first pinned post in the support section, here's a direct link to it! https://www.minecraftforge.net/forum/topic/20-rules-and-eaq-read-first-or-you-will-get-banned/
-
Could you post logs? From both client and server if possible!
-
Well, they certainly aren't running the 1.14 version of that mod with 1.15. They more than likely are running all 1.14 stuff. Get a list from them, which mods they are using, which versions, and which version of forge, then just install all the same versions
-
https://www.curseforge.com/minecraft/mc-mods/cooking-for-blockheads Use the 1.15 version they have available. Make sure you delete the 1.14 one.
-
Minecraft 1.7.10 Crash Report.
Ugdhar replied to ScarletOverLord6767's topic in Support & Bug Reports
1.7 is no longer supported on these forums due to age. Please update to a modern version to receive support. More information on supported versions can be found in the LTS link at the top of every page. -
It tells you what's wrong in mostly plain english if you look at where the error starts: There's a problem with your resynth modded-plants.toml config file, based on that. Either try removing the mod, or finding out what's wrong with the config file (would likely require contacting the mod author, unless you get lucky and someone else knows that mods config). This is likely the case of the subsequent errors, although if not that mod might just not work right.
-
Learn basic Java. Syntax (i.e. most lines end with a ; where curly braces go, etc), keywords (if..then, etc), structure (classes, methods, variables/fields), how inheritance works. Choice of IDE is personal, I use eclipse myself, intellij is a popular one. Whatever you choose, get familiar with it. Learn how to launch applications in debug mode with it, so can set breakpoints, which stop code execution at the breakpoint and allow you to inspect the values of variables and fields from that point in code. Honestly, for best results, you will need to start small, and perhaps write some text-based programs to get the basics down. That is what I would advise at least, otherwise you will potentially have questions that are too much basic java to be asked on these forums. *edit: Oh, and don't start at 1.14.4. Start with the latest, otherwise you are going to end up being out of support when the next version comes. *edit 2: google is your friend. "java tutorial", "beginner java programming", "what is a class in java?", just ask google, it probably knows!
-
My guess is that the version of forge you are using is too new for the version of the mod. Check release dates, and use the last version of forge released at the time that mod was written.
-
1.12 is no longer supported on these forums due to age. Please update to a modern version to receive support. More information on supported versions can be found in the LTS link at the top of every page.
-
Mods Not Actually Working In-Game (1.14.4 & 1.15.2)
Ugdhar replied to Tevorax's topic in Support & Bug Reports
Please post logs, otherwise any suggestions are 100% guesswork -
I honestly do not know, I never had problems when I used 1.12, but I am on the current 1.15.2 now. You should just rip off the bandaid and update Topics for old versions like this get closed once a moderator sees them, seeing as they are no longer supported here.
-
1.12 is no longer supported on this forum due to age. Please update to a modern version to receive support here. More information on supported versions can be found in the LTS link at the top of every page.
-
I know the official minecraft forums have a modding section, but I don't really go there so I don't know how good the people there are or what versions are supported.
-
Problem with the shelving unit (PO3)
Ugdhar replied to younggun4420's topic in Support & Bug Reports
1.12 is no longer supported on these forums due to age. Please update to a modern version to receive support here. More information can be found in the LTS link at the top of every page.