Jump to content

SubDivide

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by SubDivide

  1. Create a writeNbt and readNbt method in your capability interface and then call them like this: public class EssenceStorage implements IStorage<IEssence> { @Override public NBTBase writeNBT(Capability<IEssence> capability, IEssence instance, EnumFacing side) { return instance.writeNBT(); } @Override public void readNBT(Capability<IEssence> capability, IEssence instance, EnumFacing side, NBTBase nbt) { instance.readNBT((NBTTagCompound) nbt); } } instead of instance.setEssence(((NBTTagInt)nbt).getInt()); return new NBTTagInt(instance.getEssenceValue());
  2. Assuming you're asking how to login to your Minecraft account using eclipse while creating your mod, you do the following: 1. 2. 3. 4.
  3. What specifically are you trying to cancel? If it's the entire thing in there wouldn't you just surround the entire thing with that if? And wouldn't using: if (world.provider instanceof WorldProviderEnd) { evt.setCanceled(true); } Work a lot better?
  4. http://files.minecraftforge.net/maven/net/minecraftforge/forge/1.12-14.21.1.2387/forge-1.12-14.21.1.2387-installer-win.exe Adfoc seems to have broken or something Edit: Just checked the date on this thread, It's old oops
  5. Just use the MDK as normal and replace the generated src folder with his...?
  6. Happens a lot to me, Just use: gradlew -Dorg.gradle.jvmargs=-Xmx3000m setupDecompWorkspace eclipse Fixes my issue perfectly, I'm not sure if it's the right way of doing things but it certainly works for me
  7. Fly mod? Why do you need a fly mod exactly....?
  8. Since you use permissions Ex, I can point you in the direction of the sponge version: https://forums.spongepowered.org/t/permissionsex-v2-0-api-5/6198 Uses the same commands but you may need to re-do perms There is a forge version of Dynmap but I do not think it is 1.11 yet. As a replacement for Essentials I recommend: https://forums.spongepowered.org/t/0-26-0-nucleus-the-ultimate-essentials-plugin-mc- For the clearlag plugins, There are a lot available so I'll let you choose for those Not a clue what chatex does but I assume it's a chat manager so here you go: https://forums.spongepowered.org/t/chat-manager-v0-4-14/9272
  9. It's really simple to move your world from spigot to forge, assuming you didn't change the world name in server.properties you should be able to just copy paste the folder titled 'world' into a forge server installation. As for plugins, Unfortunately some of your plugins won't make it across as they are written on Spigot and not forge/Sponge. If you want a server with plugins you will have to use Sponge or server-side mods. More information on Sponge can be found here: https://www.spongepowered.org And Plugins for sponge can be found here: https://ore.spongepowered.org Note: I personally recommend backing up any worlds before doing any transitions between versions, Nothing should go wrong but better safe that sorry.
  10. For those who still want to use Techne, I have re-posted it on PMC with working files on behalf of Zuex. http://www.planetminecraft.com/mod/techne-revived---2017/
  11. The only official working one left seems to be: http://www.planetminecraft.com/mod/modeller-techne/ It hasn't been worked on in a while it seems..Hopefully Zuex hasn't dropped it
×
×
  • Create New...

Important Information

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