• 0

    posted a message on Command Switch

    I thiiiinnnk this is... a little bit... overpowered.

    Posted in: Requests / Ideas For Mods
  • 1

    posted a message on { IDEA } Remove build height limit!

    Take a look at the CubicChunks mod. It basically removes both the floor and the ceiling of the world... And that means, Sky and Void Far Lands!

    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on What Time Left Behind || A mod based around dinosaurs || Help Coders and Animators Needed!

    Uh, I have a question. Why here you specified 1.8, but in the Requesting for Modders you specified 1.12.1?

    Posted in: WIP Mods
  • 0

    posted a message on [Request] Item Generator Mod

    Welp if you say it is the ones in the popular EggWars or BedWars minigame then I can do it. But I need some more detailed information so I can give it a shot.

    Edit: Oh did you say 1.7.10? I haven't developed on that version before but maybe I just need to re-learn the differences. Anyway, tell me about it.

    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on [PAID] One Command Minigame

    Which type of the minigame are you looking for? (I need to know if I could do it or not...)

    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on Detailed Tutorial: How to install OptiFine with Forge.

    We can just put the OptiFine file into the mods folder after installing Forge though.

    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on what does this line of code mean?

    Give the complete file and I may figure it out for you...

    Posted in: Modification Development
  • 0

    posted a message on Compiling from Github

    The Minecraft version which is required for the build is missing from the build.gradle.

    Example:

    ", monospace">minecraft {
    ", monospace"> version = "1.8.9-11.15.1.2318-1.8.9"
    ", monospace"> runDir = "run"
    ", monospace"> mappings = "stable_20"
    ", monospace">}

    Posted in: Modification Development
  • 1

    posted a message on I got eclipse error and I cant get rid of it!

    Save the Reference file, then the problem may be solved...

    The C shape is not an error, it indicates that it is a class...

    Posted in: Modification Development
  • 0

    posted a message on Where do I register an event handler?

    Create in the main class a void method which takes an FMLInitializationEvent as the argument with the annotation @EventHandler. Put the register thing in that method.

    Posted in: Modification Development
  • 0

    posted a message on HUD Mod

    I need a little more detail to make this. Is the "block location" the location the player is standing on or the block the player is looking at?

    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on Flight Bow!

    This is actually pretty fun to make! I might try this.

    ---------

    Current work status: I have implemented it as an enchantment for the bow which is named "Ender Flight". Right now the enchantment is just a Prototype and has so many bugs, but you can tell me if you want to see it.

    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on (Resolved) I have an error in my Main.java

    So shouldn't you mark this as resolved?

    Posted in: Modification Development
  • 0

    posted a message on Playing sounds causes ConcurrentModificationException

    So I am making a mod that can play note block songs on Forge 1.8.9 client, and when the note block songs are played, they will cause ConcurrentModificationException:

    [13:26:23] [Client thread/FATAL]: Unreported exception thrown!
    java.util.ConcurrentModificationException
    	at com.google.common.collect.HashBiMap$Itr.checkForConcurrentModification(HashBiMap.java:339) ~[guava-17.0.jar:?]
    	at com.google.common.collect.HashBiMap$Itr.hasNext(HashBiMap.java:345) ~[guava-17.0.jar:?]
    	at net.minecraft.client.audio.SoundManager.updateAllSounds(SoundManager.java:243) ~[SoundManager.class:?]
    	at net.minecraft.client.audio.SoundHandler.update(SoundHandler.java:235) ~[SoundHandler.class:?]
    	at net.minecraft.client.Minecraft.runTick(Minecraft.java:2187) ~[Minecraft.class:?]
    	at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1080) ~[Minecraft.class:?]
    	at net.minecraft.client.Minecraft.run(Minecraft.java:380) [Minecraft.class:?]
    	at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131]
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131]
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131]
    	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131]
    	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
    	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131]
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131]
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131]
    	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131]
    	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
    	at GradleStart.main(GradleStart.java:26) [start/:?]


    I tried EntityPlayerSP#playSound, SoundHandler#playSound but they both produced the above error.

    I'm so confused right now and need help...

    Thanks.


    EDIT: This also occurs on 1.12.2...

    Posted in: Modification Development
  • 0

    posted a message on Recorder block and blank records.

    I have been working on a mod that partially does this for Forge 1.8.9:

    http://github.com/leduyquang753/NBS-Recorder

    It doesn't make disks to record, but saves the songs into .nbs files to be opened in Note Block Studio (http://stuffbydavid.com/mcnbs) or somewhere else.

    I'm going to port this to 1.12 after fixing some bugs...

    Posted in: Suggestions
  • To post a comment, please .