Everything posted by Draco18s
-
[1.10.2] Changing render "origin" of a baked model...
translate(-0.5,-0.5,-0.5) rotate(x,y,z,w) translate(0.5,0.5,0.5)
-
(Solved) [1.11] Replacing block with another block
Mind that will only work for things like pumpkins. If you wanted to replace--say--cobblestone in villages, you'd have a much harder time.
-
[1.10.2] How to set up keybindings?
Minecraft is a client side only class, you CANNOT use it on the server, not even in a packet handler. The code in the example is a server side packet handler, which is what you want. The comment is for going the other way.
-
[1.10.2] How to set up keybindings?
"Use Minecraft.getMinecraft() on the client." "Minecraft is a Client-Side-Only class." Hmmmmmmmm
-
[1.10.2 | 1.11.2] [UNSOLVED] Forge Energy
How does a text display name in a GUI affect getCapability()?
-
[1.10.2] Model baking crash
Don't set the registry name. The registry name gets set by addSubstitutionAlias
-
[SOLVED] How to build mod with dependencies?
... compile 'libs/ru.ivansteklow.isdev:1.0.0:dev' where 'libs/' is the folder path you're using?
-
[1.11] Defined Capability Does Not Exist.
Uh? public IEnergyStorage getEnergyStorage(EnumFacing facing){ return null; } You never override this.
-
[SOLVED] How to build mod with dependencies?
Then--surprise surprise--you need to tell gradle the subfolder.
-
[SOLVED] How to build mod with dependencies?
Does the file "ru.ivansteklow.isdev:1.0.0:dev" exist adjacent to the gradle.build file, or is it in a subfolder?
-
[SOLVED] How to build mod with dependencies?
- [1.11 - Solved] Changing an ItemStack's display name using NBT
Its easy. https://mcforge.readthedocs.io/en/latest/networking/simpleimpl/- [1.11 - Solved] Changing an ItemStack's display name using NBT
This is because you've edited the client-side object, and as soon as you open the player's inventory again, the server's version overwrites your changes. You need to send a packet to the server and make the change there.- [SOLVED] How to build mod with dependencies?
Hmm... dependencies { // you may put jars on which you depend on in ./libs // or you may define them like so.. //compile "some.group:artifact:version:classifier" //compile "some.group:artifact:version" // real examples //compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env //compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env // the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. //provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' // the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided, // except that these dependencies get remapped to your current MCP mappings //deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev' //deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev' // for more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html }- [1.10.2] Help with crash
SpawnMobs line 164: Caused by: java.lang.NoSuchMethodError: net.minecraft.entity.monster.EntityGuardian.setElder()V at com.mramericanmike.irishluck.outputs.SpawnMobs.init(SpawnMobs.java:164) ~[spawnMobs.class:?]- [1.11] Converting .OBJ files to .JSON?
The Json format only handles quads. It can't handle triangles, so not all obj models can be converted.- [1.11] Gui Synchronization
Or an inventory one https://github.com/Draco18s/ReasonableRealism/blob/master/src/main/java/com/draco18s/ores/entities/TileEntityMillstone.java#L174- [1.10.2] [Solved] Sending Vanilla Title Packet to Player
Look for all existing usages of SPacketTitle and take a looksee where it's used.- [Solved][1.10] Get Meta from Block for ItemStack
No. Absolutely not. "Flags" is documented quite well.- [1.11] Gui Synchronization
Aww for fuck's sake, haven't you see anything on these forums about Capabilities?- Check for entitiy at location.
World#getEntitiesInAABB(...)- [1.10.2] [SOLVED] Problems with Player's Display name
Try looking at some other commands.- [1.11] Mirror not working
I'm going to assume "no." I've done the best I can, all I know is "you've done something that is fixable, but I don't know what or how." The last time I tried to do something like this was 1.6.4 and I remember naught.- [1.10.2] [SOLVED] Problems with Player's Display name
And we'd know that from reading a post that says, "Bump" how? Also, don't do that. Just post the new problem with the updated code rather than saying "bump."- [1.10.2] Custom Dimension
All I can say is, what's at VillageCollection.java:303 and why would your code cause it to be null. - [1.11 - Solved] Changing an ItemStack's display name using NBT
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.