
Everything posted by Kokkie
-
[1.13.2] Tool attack damage broken?
It's an enum so it's right
-
Can't download forge
If you're downloading it from Forge's website you can ignore the block and download it anyway
-
Missing forge
Open the version list and search for the right version of Forge, it might be at the very bottom of the list
-
Missing forge
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
-
Missing forge
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?
-
Quick Question!
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.
-
Create a server using µTorrent
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!
-
Create a server using µTorrent
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)
-
Create a server using µTorrent
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.
-
[1.12.2] Can't seem to start MC
I just downloaded the latest Java 8 JDK, downloaded the latest forge, ran gradlew setupDecompWorkspace eclipse and that's it
-
[1.12.2] Can't seem to start MC
I'm just using the standard run button of Eclipse
-
[1.12.2] Can't seem to start MC
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?
-
[1.7.10] Issues with Proxies
Then why post here? Create your own topic.
-
[1.12.2] Sound effect not played
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
-
[1.7.10] EZ Storage GUI Causing Crash?
Also, 1.7.10 is not supported on this forum
-
[Unsolved] Trouble with sound...
You haven't even posted the last post a an hour before this bump, don't bump that often.
-
[1.10.2] Hammer 3x3x1
If you just copy/paste, then what's the point of you making the mod?
-
[1.10] playSound() and spawnParticle() not working!
What version are you using?
-
[1.10] playSound() and spawnParticle() not working!
What exactly is a blockcrack ID?
-
[1.10] playSound() and spawnParticle() not working!
You need to check if you are on the server or on the client
-
Curseforge questions
You've been here for over a year
-
Curseforge questions
Then why quote the question answered?
-
Curseforge questions
Didn't I already answer it?
-
Curseforge questions
I think more like the url of youtube videos
-
Should we even?
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)...
IPS spam blocked by CleanTalk.