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

Posts posted by Kokkie

  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next
  • Page 1 of 31  
  1. [1.13.2] Tool attack damage broken?

    in Modder Support

    Posted February 19, 2019


    29 minutes ago, sunsigne said:

    What is this "TUTORIAL" at the second line ? Souldn't it be "private ToolMaterialList" instead ?

    It's an enum so it's right

  2. Can't download forge

    in General Discussion

    Posted December 28, 2018


    If you're downloading it from Forge's website you can ignore the block and download it anyway

  3. Missing forge

    in Support & Bug Reports

    Posted December 26, 2018


    Open the version list and search for the right version of Forge, it might be at the very bottom of the list

  4. Missing forge

    in Support & Bug Reports

    Posted December 26, 2018


    Just now, colincat08 said:

    i have the forge, the GOOD one, i just have no idea how to get it into minecraft

    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

  5. Missing forge

    in Support & Bug Reports

    Posted December 26, 2018 · Edited December 26, 2018 by Kokkie


    4 minutes ago, colincat08 said:

    idk how to get that version of forge into minecraft, i can get 1.12.2 but not like "forge 2.34.32.1.34.5234" crap

    Because you get your forge from stupid sites like 9minecraft, you can easily download any from forge itself

    1 hour ago, DaemonUmbra said:

    Only get Forge from http://files.minecraftforge.net, any other site is NOT the official Forge download and thus may have malware or other undesirable programs shoehorned in. 

    But you already have an installer for a right version so why do you want to download another?

  6. Quick Question!

    in Modder Support

    Posted June 20, 2018


    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.

  7. Create a server using µTorrent

    in Minecraft General

    Posted March 22, 2018


    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!

  8. Create a server using µTorrent

    in Minecraft General

    Posted March 22, 2018


    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)

  9. Create a server using µTorrent

    in Minecraft General

    Posted March 21, 2018 · Edited March 21, 2018 by Kokkie


    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.

  10. [1.12.2] Can't seem to start MC

    in Modder Support

    Posted March 17, 2018


    I just downloaded the latest Java 8 JDK, downloaded the latest forge, ran gradlew setupDecompWorkspace eclipse and that's it

  11. [1.12.2] Can't seem to start MC

    in Modder Support

    Posted March 3, 2018


    56 minutes ago, Ugdhar said:

    I would ask, how are you building/running the mod?

    I'm just using the standard run button of Eclipse

  12. [1.12.2] Can't seem to start MC

    in Modder Support

    Posted March 3, 2018


    Hey, I'm back :D

    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?

  13. [1.7.10] Issues with Proxies

    in Modder Support

    Posted January 21, 2018


    5 hours ago, zizbird said:

    I see this conversation is from years ago

    Then why post here?

    5 hours ago, zizbird said:

    but I was just now having the same problem starting out modding for Minecraft 1.12.2

    Create your own topic.

     

  14. [1.12.2] Sound effect not played

    in Modder Support

    Posted January 14, 2018


    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

    • Like 1
  15. [1.7.10] EZ Storage GUI Causing Crash?

    in Support & Bug Reports

    Posted January 9, 2018


    Also, 1.7.10 is not supported on this forum

  16. [Unsolved] Trouble with sound...

    in Modder Support

    Posted January 8, 2018


    1 hour ago, Zillex_ said:

    Who would win, A well constructed forum or one bumpy boi

    You haven't even posted the last post a an hour before this bump, don't bump that often.

  17. [1.10.2] Hammer 3x3x1

    in Modder Support

    Posted December 27, 2017 · Edited December 27, 2017 by Kokkie


    4 minutes ago, DarkProd02 said:

    Can you give me the code please?

    If you just copy/paste, then what's the point of you making the mod?

    • Like 2
  18. [1.10] playSound() and spawnParticle() not working!

    in Modder Support

    Posted December 16, 2017


    What version are you using?

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

    in Modder Support

    Posted December 16, 2017


    What exactly is a blockcrack ID?

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

    in Modder Support

    Posted December 16, 2017


    You need to check if you are on the server or on the client

  21. Curseforge questions

    in Modder Support

    Posted December 15, 2017


    You've been here for over a year

  22. Curseforge questions

    in Modder Support

    Posted December 15, 2017


    Then why quote the question answered?

  23. Curseforge questions

    in Modder Support

    Posted December 15, 2017


    Didn't I already answer it?

    32 minutes ago, Kokkie said:

    I think more like the url of youtube videos

     

  24. Curseforge questions

    in Modder Support

    Posted December 15, 2017


    Just now, TheRPGAdventurer said:

    like tags on youtube videos?

    I think more like the url of youtube videos

    • Like 1
  25. Should we even?

    in General Discussion

    Posted December 5, 2017


    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)...

  • 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