
shieldbug1
Forge Modder-
Posts
404 -
Joined
-
Last visited
Everything posted by shieldbug1
-
The NEI API is documented and should be sufficient. Look at the API class to see where to start. If that's not enough take a look at another open-source mod that implements this feature, and see how it does it.
-
Looks like an ID conflict: Long story short, update to 1.7.10
-
[1.6.4] Random crash in development environment
shieldbug1 replied to SkylordJoel's topic in Modder Support
Both 1.7 an 1.8 have almost complete mappings, just use the daily snapshots. I haven't encountered any bug or glitch that makes 1.6.4 better than either of those versions. There is nothing but performance improvements in the newer version, I haven't experienced any framerate drops. -
World as in server/thing you click in the world selection menu.
-
1. Use the item's onUpdate method, since you're checking for your item 2. Don't use LivingUpdateEvent for players, the PlayerTickEvent is for that.
-
ID's don't change per world. So if you have to store something in one world that will never need to interact with another world, use block and item IDs. The preferable method, however, is to get the names of Items and Blocks from the Item and Block registries respectively.
-
Post the crash log?
-
[ Forge-1.7.2-10.12.0.1034 ] Not Responding..
shieldbug1 replied to Progamer887's topic in Support & Bug Reports
Update to 1.7.10 or read the EAQ. -
[1.8][SOLVED] A few questions regarding server modding with 1.8
shieldbug1 replied to Jacky2611's topic in Modder Support
Just a bit of a tip - you can use newer mcp mappings to get better naming. Nearly everything has been named by now in the daily snapshots. -
[1.7.10] Making a block that you can walk through.
shieldbug1 replied to Noodly_Doodly's topic in Modder Support
... What. -facepalms- -
First of all, why is your damage variable static? Read up on what static means. Next, where do you call changeDamage()?
-
Post code.
-
Forge not recognizing my .zip file mods
shieldbug1 replied to shadowmaster's topic in Support & Bug Reports
http://lmgtfy.com/?q=How+to+rename+a+file -
[SOLVED] Block.unlocalizedName & Block.getBlockFromName()
shieldbug1 replied to Blargerist's topic in Modder Support
The Block Registry is exactly what you should be using. Block.getBlockFromName uses the block registry itself. -
[SOLVED][1.7.10] .setBlockTextureName method cannot be defined
shieldbug1 replied to XenoMustache's topic in Modder Support
Access Control in Java Stack Overflow Question with user responses Java Support Forum -
One of your mods is missing a dependency. I suggest going through all your mods' main forum posts/websites and reading to make sure you have all dependencies downloaded.
-
I believe the user is now 'MCPBot_Reborn'
-
"loop java.lang.NoClassDefFoundError"
shieldbug1 replied to Billboule's topic in Support & Bug Reports
Problem with World of Dinos. -
what? Post your log file.
-
[1.7.10] Getting the lists of recipes for arbitrary machines
shieldbug1 replied to Nephroid's topic in Modder Support
I certainly haven't been. It's a 1:1 input:output in terms of ItemStacks. Kind of like the furnace. Stack of A becomes a Stack of B, so I've just been storing it as a HashTable<ItemStack,ItemStack>. This is exactly why support for every individual mod is needed to do something like this. Off-topic: Any reason you're using a HashTable over a HashMap? -
[1.7.10] Getting the lists of recipes for arbitrary machines
shieldbug1 replied to Nephroid's topic in Modder Support
The only reason NEI is able to do that, is because those mod authors integrate with NEI by using the NEI API and creating their own 'plugins'. Perhaps if there was a standardised IMachine interface this would be possible (obviously with the interface intended for TileEntities), however then you get the problem of getting the list of recipes back in that method, since not every mod keeps their recipes stored as IRecipe. I suggest getting all the APIs and/or dev versions of the mods, and simply integrating with each one individually. -
Problems with Minecraft Forge Server 1.7.10
shieldbug1 replied to NeoHikamaru's topic in Support & Bug Reports
These are all problems with the MorePlayerModels mod. Report to the mod author. -
Add "lore" to an item without making its own class?
shieldbug1 replied to Ms_Raven's topic in Modder Support
Also: You can't compare strings with == .