
calclavia
Forge Modder-
Content Count
2281 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Everything posted by calclavia
-
Fixed it. Read the UE post.
-
How would I generate liquid in Forge? Any hook for that? Let's say I want to generate a oil pool...
-
onUpdate() { ticks ++; if(ticks > 80) { //DO HUGE EXPlOSION AND END WORLD } } Something like that...
-
Why don't you send a reference to the image for example a URL instead? Takes less memory.
-
sending msg to player entering command
calclavia replied to DarkGuardsman's topic in General Discussion
I use this code in ICBM to send a chat message to a player. "player" is of course EntityPlayer. player.addChatMessage("Defuser out of electricity!"); -
Maybe check if IC2 is generating ores and if it is don't generate those ores? That's what Forestry does...
-
Try doing this: Block.blockList[iC2COPPERBLOCKID] = null; You just nullified their block Something like that should work. Not sure though. I don't get why you would want to disable their blocks.
-
try using the isModLoader function from ModLoader checking is a mod is loaded...
-
I think the dispenser handling should be done in a IDispenserHandler that is registered through a function MinecraftForge.registerDispenserHandler instead of handling in the BaseMod class. I think this is a more structured way to do things since all other handlers are registered (e.g ISoundHandler)...
-
I think Forge should include the player API. Generally I think a player would feel annoyed when they have to install Forge, then player API.
-
There seems to be this glitch though I am not sure if it's Forge's problem or mine. That is when I have a block higher than 256 value the block will appear in a weird way in the creative menu. I have this block that is like a reed and has an item version and a block version for it. I don't want the block version to appear in the inventory but it does. I specified explicitly for it not to be added to the creative menu but it still does and I can't stop it. Is there anyway I can fix this or is this a Forge 4096 bug? This applies to all the "hidden" blocks (un-placable directly) I have which are not supposed to be shown in creative menu.
-
There really should be a Modder Support section.
calclavia replied to Qwertygiy's topic in General Discussion
I agree. Most stuff that is for modder support is written in the general discussion section. -
Yup I found it! Thanks.
-
Hmm. I will look into that and get back to you.
-
I have a GUI with some complex things inside and I would like to make it so when a player hovers over something it will show a tool tip bar (like the how the item has a tool tip bar when you hover it). Is there a way to do this?
-
I agree. Even with 4069 IDs, it's still possible to get a ID conflict. Forge should handle ID syncs in servers. Simply send a data pack with IDs for mods that use them and then change the clients IDs to fit the server. Once again it's easy to say it but might not be easy to actually do this...
-
I think you can by using Java Reflections
-
Can you specifically tell me what problems you have? Like show some code and things. Saying you can't do a general thing doesn't let me know what specific problem you have. Metadata is a broad subject.
-
Make the fish visible in the water while it's swimming and not like the Minecraft fish which can be fished out from one block of water...
-
Do some research and learn metadata.
-
This is the first time I saw lex writing in a big paragraph for a forum reply...
-
Thank you. Now that was actually helpful I didn't know what reflection was until you mentioned it.
-
I pat myself in the back
-
I am pretty much on potions. But thanks for your help anyway. I will look into it. It was very helpful.