Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Kokkie

Kokkie

Forge Modder
 View Profile  See their activity
  • Content Count

    796
  • Joined

    September 26, 2016
  • Last visited

    February 16, 2020
  • Days Won

    1

 Content Type 

  • All Activity

Profiles

  • Status Updates
  • Status Replies

Forums

  • Topics
  • Posts

Calendar

  • Events

Everything posted by Kokkie

  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next
  • Page 1 of 31  
  1. Kokkie

    [1.13.2] Tool attack damage broken?

    Kokkie replied to HarryTechReviews's topic in Modder Support

    It's an enum so it's right
    • February 19, 2019
    • 4 replies
  2. Kokkie

    Can't download forge

    Kokkie replied to MihaiTheAwsm's topic in General Discussion

    If you're downloading it from Forge's website you can ignore the block and download it anyway
    • December 28, 2018
    • 2 replies
  3. Kokkie

    Missing forge

    Kokkie replied to colincat08's topic in Support & Bug Reports

    Open the version list and search for the right version of Forge, it might be at the very bottom of the list
    • December 26, 2018
    • 38 replies
  4. Kokkie

    Missing forge

    Kokkie replied to colincat08's topic in Support & Bug Reports

    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
    • December 26, 2018
    • 38 replies
  5. Kokkie

    Missing forge

    Kokkie replied to colincat08's topic in Support & Bug Reports

    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?
    • December 26, 2018
    • 38 replies
  6. Kokkie

    Quick Question!

    Kokkie replied to OneRealKieran's topic in Modder Support

    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.
    • June 20, 2018
    • 1 reply
  7. Kokkie

    Create a server using µTorrent

    Kokkie replied to Kokkie's topic in Minecraft General

    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!
    • March 22, 2018
    • 5 replies
  8. Kokkie

    Create a server using µTorrent

    Kokkie replied to Kokkie's topic in Minecraft General

    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)
    • March 22, 2018
    • 5 replies
  9. Kokkie

    Create a server using µTorrent

    Kokkie posted a topic in Minecraft General

    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.
    • March 21, 2018
    • 5 replies
  10. Kokkie

    [1.12.2] Can't seem to start MC

    Kokkie replied to Kokkie's topic in Modder Support

    I just downloaded the latest Java 8 JDK, downloaded the latest forge, ran gradlew setupDecompWorkspace eclipse and that's it
    • March 17, 2018
    • 7 replies
  11. Kokkie

    [1.12.2] Can't seem to start MC

    Kokkie replied to Kokkie's topic in Modder Support

    I'm just using the standard run button of Eclipse
    • March 3, 2018
    • 7 replies
  12. Kokkie

    [1.12.2] Can't seem to start MC

    Kokkie posted a topic in Modder Support

    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?
    • March 3, 2018
    • 7 replies
  13. Kokkie

    [1.7.10] Issues with Proxies

    Kokkie replied to ravingmadlunatic's topic in Modder Support

    Then why post here? Create your own topic.
    • January 21, 2018
    • 6 replies
  14. Kokkie

    [1.12.2] Sound effect not played

    Kokkie replied to xorinzor's topic in Modder Support

    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
    • January 14, 2018
    • 5 replies
      • 1
      • Like
  15. Kokkie

    [1.7.10] EZ Storage GUI Causing Crash?

    Kokkie replied to Banne's topic in Support & Bug Reports

    Also, 1.7.10 is not supported on this forum
    • January 9, 2018
    • 3 replies
  16. Kokkie

    [Unsolved] Trouble with sound...

    Kokkie replied to Zillex_'s topic in Modder Support

    You haven't even posted the last post a an hour before this bump, don't bump that often.
    • January 8, 2018
    • 29 replies
  17. Kokkie

    [1.10.2] Hammer 3x3x1

    Kokkie replied to DarkProd02's topic in Modder Support

    If you just copy/paste, then what's the point of you making the mod?
    • December 27, 2017
    • 15 replies
      • 2
      • Like
  18. Kokkie

    [1.10] playSound() and spawnParticle() not working!

    Kokkie replied to MSpace-Dev's topic in Modder Support

    What version are you using?
    • December 16, 2017
    • 9 replies
  19. Kokkie

    [1.10] playSound() and spawnParticle() not working!

    Kokkie replied to MSpace-Dev's topic in Modder Support

    What exactly is a blockcrack ID?
    • December 16, 2017
    • 9 replies
  20. Kokkie

    [1.10] playSound() and spawnParticle() not working!

    Kokkie replied to MSpace-Dev's topic in Modder Support

    You need to check if you are on the server or on the client
    • December 16, 2017
    • 9 replies
  21. Kokkie

    Curseforge questions

    Kokkie replied to TheRPGAdventurer's topic in Modder Support

    You've been here for over a year
    • December 15, 2017
    • 20 replies
  22. Kokkie

    Curseforge questions

    Kokkie replied to TheRPGAdventurer's topic in Modder Support

    Then why quote the question answered?
    • December 15, 2017
    • 20 replies
  23. Kokkie

    Curseforge questions

    Kokkie replied to TheRPGAdventurer's topic in Modder Support

    Didn't I already answer it?
    • December 15, 2017
    • 20 replies
  24. Kokkie

    Curseforge questions

    Kokkie replied to TheRPGAdventurer's topic in Modder Support

    I think more like the url of youtube videos
    • December 15, 2017
    • 20 replies
      • 1
      • Like
  25. Kokkie

    Should we even?

    Kokkie replied to American2050's topic in General Discussion

    You should go for the latest versions, because they're there for a reason (bug fixes etc.). But that doesn't say you won't get support for the other versions (if you have a good reason to)...
    • December 5, 2017
    • 3 replies
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next
  • Page 1 of 31  
  • All Activity
  • Home
  • Kokkie
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community