Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/14/18 in all areas

  1. Hey, I Need a Method like an Event for Serverside, the Event should be fired if there is a Block in the World (isn't remote). Is there a way to get a Handler for that and how can I Register him? I'm using now 1.12 Thank you for help!
    1 point
  2. Can I recommend BlockBench? http://blockbench.net
    1 point
  3. You can create models with multiple layers just fine: https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/resources/assets/harderores/models/block/hardore.json It is also possible to read two (or more) textures off the disk and combine them during the texture sheet stitching process, but it's not documented and can be difficult to do right (and if it crashes the game, its very hard to diagnose). If you want to do items with layers, based on NBT, that's doable too. You need to define a Custom Mesh Definition: https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/industry/item/ItemCastingMold.java#L89 And register it: https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/client/ClientEasyRegistry.java#L194
    1 point
  4. issue is solved with calling this right after my respawn method you were initially right it had to do with the network connection coords cheat system. try { Method capture = NetHandlerPlayServer.class.getDeclaredMethod("captureCurrentPosition"); capture.setAccessible(true); capture.invoke(player.connection); } catch (Throwable t) { t.printStackTrace(); }
    1 point
  5. I want to add something like a spawner. I need a method like onBlockPlaced, but for "onBlockInworld".
    1 point
  6. Hey, I have a problem... I want to add an Item, who "spawns" a .schematic File in the World I write for that two Handlers: The ObjectHandler: And the SchematicHandler: Here is my Item class: But if I want to instance the Schematic, the game Crashes in the Initialization... Here is the Crash-Report: Can you help me, thank you very much!
    1 point
  7. Can you help me with my problem?
    1 point
  8. Were should I post the Topic?
    1 point
  9. Now it works, thank you I had some variables not initzialisated, so the game has crashed...
    1 point
  10. Ok, I will Post all when I'm home.
    1 point
  11. Hi, I've got a problem. I wanna to make a Mod, this mod will Hide Players in the Tablist of the player, who execute the Command. In Bukkit it is very easy, but how can I Import the Package in Minecraft Forge?? Can you say me please how the Methods call in Forge? Thank you very much and sorry for my english... I think I Must say the Client that the player Quit the Server, but he Rest on the Server... That Must be possible with the player List item, but how does it works??
    1 point
  12. Haha, sorry I don't saw the Repeatation...
    1 point
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.