Jump to content

Kokkie

Forge Modder
  • Posts

    796
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Kokkie

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

  2. 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?

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

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

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

  6. 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?

×
×
  • Create New...

Important Information

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