-
Posts
5160 -
Joined
-
Last visited
-
Days Won
76
Everything posted by Choonster
-
Select mcp working directory for deobfuscator?[Whats that]
Choonster replied to ItsAMysteriousYT's topic in Modder Support
Are you using CodeChickenCore? It requires MCP mappings to do runtime deobfuscation of mods. -
[Solved] [1.8] Block#setLightLevel not working
Choonster replied to LordMastodon's topic in Modder Support
Instead of setting the block bounds directly, you should override Block#setBlockBoundsBasedOnState and set the bounds there. Block is a singleton, so calling Block#setBlockBounds modifies the bounds for all occurrences of the block. setBlockBoundsBasedOnState should be called before the bounds are queried. -
[Solved] [1.8] Block#setLightLevel not working
Choonster replied to LordMastodon's topic in Modder Support
Block bounds are on a scale of 0 to 1. A full block is length 1 on each side. -
In 1.8, you can use Entity#onKillCommand to kill an Entity . Entity#getPosition will return the Entity 's current position as a BlockPos . Use World#setBlockState to set the block state at the specified position and World#setBlockToAir to set the block at the specified position to air.
-
ItemStack doesn't override the hashCode method, so two instances are treated as different keys even if they share the same contents. To use an ItemStack as a key, you'll need a wrapper class that overrides hashCode to return the hash code of the ItemStack 's contents; com.google.common.base.Objects#hashCode will combine the hash codes of multiple objects for you. Exactly which parts of the ItemStack you use in the hash code depends on your requirements: Do you only care about the Item , stack size and metadata; or do you include the NBT as well? NBTTagCompound overrides hashCode to return the hash of its contents, so you don't need to calculate that yourself.
-
[1.7.10] @SideOnly(Side.CLIENT) Not use it anymore?
Choonster replied to American2050's topic in Modder Support
You can use as many annotations as you want. You should always use @Override when overriding a method and @SideOnly when overriding a method with @SideOnly . -
Look at the log file, then. It should be in the logs folder of your Minecraft directory.
-
Well what's the actual error that's thrown? Is it a StackOverflowError ?
-
Post the full stack trace. This method is called recursively, so it's possible you'll get a StackOverflowError if a model has a cyclic inheritance graph (e.g. A has parent B, B has parent A).
-
You need to think about how each property's value will be stored in the metadata and then convert to and from the metadata appropriately. For a single boolean, you can just use metadata values 0 and 1.
-
Why add them as dependencies in the buildscript block? Isn't that only for the build script's dependencies?
-
[Solved] [1.8] How to update Forge version
Choonster replied to LordMastodon's topic in Modder Support
There's no need to run Gradle for the MDK download, just copy the ForgeGradle plugin declaration and Forge version from the build.gradle file into yours and run the Gradle commands I mentioned for your project. -
[1.7.10] how do I know when I need the world to be client or server?
Choonster replied to kauan99's topic in Modder Support
Yes, the server is the authority on pretty much any calculation; including damage. As long as the potion is active on the server, its effects should work. -
[Solved] [1.8] How to update Forge version
Choonster replied to LordMastodon's topic in Modder Support
For Eclipse, run gradlew setupDecompWorkspace cleanEclipse eclipse . For IDEA, run the setupDecompWorkspace task and then refresh it in the Gradle tab. Download and extract the version 1506 MDK (the new name for the src download), open its build.gradle file in a text editor and compare it to your current one. You'll want to replace the buildscript block and apply plugin line of your build.gradle with the plugins block of the new build.gradle. -
[1.7.10] how do I know when I need the world to be client or server?
Choonster replied to kauan99's topic in Modder Support
Most things should either be done only on the server (if a packet is automatically sent to the clients) or on both sides (if a packet isn't automatically sent). In this case, the server will automatically send a packet to the clients when you add, change or remove a potion effect; so you only need to do it on the server. -
[Solved] [1.8] How to update Forge version
Choonster replied to LordMastodon's topic in Modder Support
It's the same for any version of Forge that uses ForgeGradle: change the minecraft.version field in your build.gradle script to the appropriate version from files.minecraftforge.net and refresh or regenerate your IDE project. Recent versions of 1.8 have changed the way that the ForgeGradle plugin is applied (since there's now a stable version rather than a snapshot), so if you're updating to version 1503 or newer you should copy the changes to your build.gradle script. -
You've added a recipe for an ItemStack with a null Item . You should instantiate and register your Block s and Item s in preInit and then add your recipes in init.
-
PlayerEvent.ItemCraftedEvent is fired on the FML event bus when a player crafts something.
-
Ah, you need to register your IGuiHandler in the init phase with NetworkRegistry#registerGuiHandler .
-
Add a static field of type tutmod to your tutmod class and give it the @Instance annotation.
-
You haven't added an @Instance field to your tutmod class.
-
Post your main mod class, your IGuiHandler class and the class where you call player.openGUI on Gist (use the .java file extension so syntax highlighting works) and link them here.
-
That's the instance of your main mod class (the class with the @Mod ) annotation. If you have a static field in the mod class of the same type, you can add the @Instance annotation to it and FML will fill it with your mod's instance.
-
This is possible with some limitations and hacks, but it's not all that simple since IRecipe has no direct access to the player crafting it. Do you really a need a dev-only item? Is creative-only not enough?