Jump to content

Kokkie

Forge Modder
  • Posts

    796
  • Joined

  • Last visited

  • Days Won

    1

Kokkie last won the day on June 23 2017

Kokkie had the most liked content!

Converted

  • Gender
    Male
  • Location
    The Netherlands
  • Personal Text
    I am not new!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Kokkie's Achievements

Dragon Slayer

Dragon Slayer (6/8)

55

Reputation

  1. If you're downloading it from Forge's website you can ignore the block and download it anyway
  2. Open the version list and search for the right version of Forge, it might be at the very bottom of the list
  3. Do you know how to pick different versions of minecraft? It works the same, all versions you have installed of Forge will show up in the versions list, so just pick the right one. On a side-note, please don't make so many posts on here
  4. Because you get your forge from stupid sites like 9minecraft, you can easily download any from forge itself But you already have an installer for a right version so why do you want to download another?
  5. This isn't a forum you can just get some code n go, we're here to give you directions on how to do things and you code yourself. So, take a look at vanilla rotational blocks like the furnace and see how that works, and try to implement it in one of your blocks. If you have problems during this process, ask for help here.
  6. Ah ok, well that's what I was trying to avoid because I don't have access to it, only my dad has. Thanks anyways!
  7. I've seen multiple 'tutorials' from 5 year old kids that showed how to do it, and those seemed to be legit. But for me it doesn't work. (Basically what you should have to do is just run your Minecraft server, and setting the port for incoming connections of µTorrent to 25565)
  8. Hello, I was wondering how to set up a Minecraft server using µTorrent. From what I've seen simply creating a server, setting the IP to the IPv4 Address and setting the port for incoming connections to 25565 in µTorrent should work. I've tried it multiple times but others can't seem to join my server, and when I check if the port 25565 is open on my IP it says it isn't responding (using CheckMyPort.com). Is there anyone here that knows how it works? Thanks. EDIT: I can join the server myself using the IPv4 Address as IP, so the server works, the problem is probably just µTorrent. I've also tried reinstalling µTorrent.
  9. I just downloaded the latest Java 8 JDK, downloaded the latest forge, ran gradlew setupDecompWorkspace eclipse and that's it
  10. I'm just using the standard run button of Eclipse
  11. Hey, I'm back So, I tried creating a mod agian after a looong time, but Minecraft just doesn't want to run. Here's my code (all I made so far): package com.Egietje.ChatFilter; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.Mod.Instance; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; @Mod(modid = "cf", name = "Chat Filter", version = "1.0") public class MainMod { @Instance("cf") public static MainMod instance; @EventHandler public void preInit(FMLPreInitializationEvent event) { } @EventHandler public void init(FMLInitializationEvent event) { } @EventHandler public void postInit(FMLPostInitializationEvent event) { } } Here's the error: [15:48:27] [main/FATAL] [FML]: There is a severe problem with cf - it appears not to have constructed correctly [15:48:27] [main/ERROR] [FML]: Could not dispatch event: public void net.minecraftforge.fml.common.LoadController.propogateStateMessage(net.minecraftforge.fml.common.event.FMLEvent) to java.lang.NullPointerException [15:48:27] [main/FATAL] [FML]: Fatal errors were detected during PREINITIALIZATION. Loading cannot continue. [15:48:27] [main/FATAL] [FML]: States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored | State | ID | Version | Source | Signature | |:----- |:--------- |:------------ |:-------------------------------- |:--------- | | U | minecraft | 1.12.2 | minecraft.jar | None | | U | mcp | 9.42 | minecraft.jar | None | | U | FML | 8.0.99.99 | forgeSrc-1.12.2-14.23.2.2624.jar | None | | U | forge | 14.23.2.2624 | forgeSrc-1.12.2-14.23.2.2624.jar | None | | U | cf | 1.0 | bin | None | [15:48:27] [main/FATAL] [FML]: The following problems were captured during this phase [15:48:27] [main/ERROR] [FML]: Caught exception from cf (null) java.lang.RuntimeException: null at net.minecraftforge.fml.common.LoadController.buildModObjectList(LoadController.java:314) ~[LoadController.class:?] at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:250) [LoadController.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_162] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_162] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_162] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_162] at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) ~[guava-21.0.jar:?] at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) ~[guava-21.0.jar:?] at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) ~[guava-21.0.jar:?] at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) ~[guava-21.0.jar:?] at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) ~[guava-21.0.jar:?] at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) ~[guava-21.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:217) ~[guava-21.0.jar:?] at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:148) [LoadController.class:?] at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:602) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:270) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:513) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_162] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_162] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_162] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_162] 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_162] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_162] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_162] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_162] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Can I get some help please :P?
  12. Then why post here? Create your own topic.
  13. Do you check if you're on the client or server side? Also, I don't think you should create a new SoundEvent, rather use an existing one
  14. Also, 1.7.10 is not supported on this forum
×
×
  • Create New...

Important Information

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