Everything posted by tattyseal
-
[1.7.10] Reach. need help.
1.7.10 is no longer supported in this forum.
-
[1.11.2] Modyfing tile entity data from client gui & TESR rendering
To send data to the server you would have to create a custom packet (IMessage) along with a handler (IMessageHandler) and a NetworkWrapper for your mod using NetworkRegistry.INSTANCE.newSimpleChannel. All it'd have to do is contain the relevant data (x,y,z) and on the handler get the tile entity at that location and update your data. Hope this helps in some way
-
[M 1.8][Forge 11.14.3.1468] Problem with AL library
1) How are you launching Minecraft in your Run Config? 2) Was it working before? 3) How did you set up your enviroment? Also, should be in modder support I think.
-
My minecraft launcher doesnt starts
What do you mean by 'won't work'. If you can get the launcher open and play the game give us the log from .minecraft/logs/fml-client-latest.log.
-
[1.7.10] [SOLVED]About cover NBT tag.
The issue is that you make your own instance of IBlockAccess and use that, the World world that is passed into onBlockActivated implements IBlockAccess. Use that,
-
[SOLVED][1.7.10]GUI won't open
You need to return your Container on your Server and GUI on your Client.
-
[1.7.10] Rendering of 3D Model didn't work. Need Help.
private static final ResourceLocation texture = new ResourceLocation("downgrademod/textures/blocks/slime.png"); should be private static final ResourceLocation texture = new ResourceLocation("downgrademod", "textures/blocks/slime.png");
-
Gravitation Hook
PR is an option, but it is hard to make the PR for this due to many reasons. 1. Galacticraft only changes the behavior of Player. Of course there are some alien mobs, but they are custom mobs by Galacticraft which can easily be modified (for Galacticraft). 2. Modifying Gravitation Effect is not that easy. For gravitation effect is hard-coded, and each entities got different methods for gravitation. Plus, there are custom entities added by mods which would have different mechanism of gravitation. 3. If this would made as a PR, it will contain so many changes. It would make the PR hard to accept. If you think a PR will be hard to accept, who do you expect to do this? PR or a patch by one of the Forge Team, they would both contain the same amount of changes. You don't even need this in forge, use ASM or Reflection. I will say 1 thing. If you want this, you will most likely need to do it yourself and PR it.
-
Gravitation Hook
If YOU need it so much, why not make a Pull Request? We are not here just to make your job easier. Galacticraft already does this, so its not "impossible".
-
1.7.10 Need help with simple custom door. Want to extend from blockDoor.
Post your code.
-
[1.7.10] CompactStorage 1.9
Updated the OP with new information
-
Testing a custom version of Forge
-.- Maybe try putting it in an actual mod. Minecraft needs to initialize these classes first.
-
[1.8][SOLVED] Entity isn't making dirt into grass
Permission to facedesk? In BlockState there is a getBlock() method -.-
-
How to bind command to button?
This is a Forge Forum. We do not support Base Editing here.
-
Gradlew and Minecraft problem
What are you wanting in your "Custom Client". Everything that you could probably want can be done in Forge with no need to edit base classes. Base Editing is not supported.
-
Item information not displaying properly
if(event.smelting.stackTagCompound.getString("Owner")== null) should be if(!event.smelting.stackTagCompound.hasKey("Owner"))
-
[1.8] [SOLVED] Problems starting out a new Project in Eclipse
Use setupDecompWorkspace not setupDevWorkspace.
-
ClassLoader not finding files
For what you are trying to do, I don't think you need a classloader.
-
Forge Libraries
I think I will keep it running the Forge Installer to keep everyone happy. .
-
Forge Libraries
Hello, I am working on a modpack installer that installs packs to the Vanilla Launcher and adds profiles for them and sets them up right. Currently it runs the Forge installer and the user has to run through it like they would normally, I don't know whether to keep it like this, or make my installer download the libraries required by Forge itself. If so, I could not find where the Forge installer downloads its libraries from. Does the version file Forge creates in the launcher download the libraries for it, or does the installer do this?
-
[Technic] 1.7.10/1.7.2 crash
- Built-in support for unique config files for each world
I reckon this is more up to modders than anyone else. And a library probably would not be used too much by modders as it is easy to implement yourself if you are experienced enough- Crash upon loading world using FML 1.8 Latest Version
It seems like a Biomes o' Plenty issue for the first 2. And the 3rd one I have encountered a few times with FML 1.8. All I can really say is report it to Biomes o' Plenty.- [1.7.x] Hit Block event [solved]
The method only takes the event not Block block, EntityPlayer player, int meta. The event will contain all of the info you require.- Ok FOrge WONT START
Post the log from ./logs/fml-server-latest.log, or as diesieben07 said. Your thread will most likely be closed. - Built-in support for unique config files for each world
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.