Mod Feedback [By Request] RotaryCraft Suggestions

  • FTB will be shutting down this forum by the end of July. To participate in our community discussions, please join our Discord! https://ftb.team/discord

ljfa

New Member
Jul 29, 2019
2,761
-46
0
I just looked into it. It plays the sound at multiple locations - actually spawning "TileEntitySound" around it - to accomplish this.
I see. Well, the smoke detector emits a redstone signal, that's good enough for me. One can hook this up to a howler alarm if one wants :cool:
 

Omega Haxors

New Member
Jul 29, 2019
90
0
0
I was actually pretty shocked to find that comparators facing away from Eletricraft batteries won't emit redstone based on the % of charge in the battery. Now I can't make an automatic release for batteries when they get full charge.

Please fix this injustice. D':

I also noticed that batteries will still drain at the same rate even if a resister reduces the electrical draw on the battery. Put down a 1 amp resistor and your battery will drain just as fast as if it wasn't there.

EDIT: Wow, just found a massive bug where batteries will continue to discharge even if they are out of power. No idea what causes it but you can get free power by doing this.
 
Last edited:

Reika

RotaryCraft Dev
FTB Mod Dev
Sep 3, 2013
5,079
5,331
550
Toronto, Canada
sites.google.com
I was actually pretty shocked to find that comparators facing away from Eletricraft batteries won't emit redstone based on the % of charge in the battery. Now I can't make an automatic release for batteries when they get full charge.

Please fix this injustice. D':
They do output to comparators.
Code:
  @Override
   public int getRedstoneOverride() {
     return (int)(15D*this.getStoredEnergy()/this.getMaxEnergy());
   }


I also noticed that batteries will still drain at the same rate even if a resister reduces the electrical draw on the battery. Put down a 1 amp resistor and your battery will drain just as fast as if it wasn't there.
Resistors are for when you have multiple paths. All current has to go somewhere.

EDIT: Wow, just found a massive bug where batteries will continue to discharge even if they are out of power. No idea what causes it but you can get free power by doing this.
[/quote]
Fixing.
 

desht

Well-Known Member
Jan 30, 2013
150
81
53
UK
Wow, massive respect to the Bukkit team for finding a way. In their API it was a simple as setting a block as "directly powered" and it would behave like a redstone block until it was redstone updated. You could also set a block as "indirectly powered" and it would work like a block with a redstone wire going into it. I remember playing with it back in my plugin dev days.

Bukkit never provided any methods for directly setting the redstone level of a block, for a very good reason; as @Reika pointed out, redstone levels are calculated dynamically. That's why any Bukkit plugin (including one of mine) which needed to produce a redstone signal generally did it with a flipped lever.

Bukkit does have methods to check if a block is either directly or indirectly powered, which may be what you're thinking of.
 

abculatter_2

New Member
Jul 29, 2019
599
0
0
Just thought of a use for the compressed canola seeds beyond just storage space: Right-clicking on a farmland plot with it will attempt to plant a 3x3 of canola centered on the farmland. If the attempt fails on a block, it instead drops a canola seed on that block.
 
Last edited:

Omega Haxors

New Member
Jul 29, 2019
90
0
0
Bukkit never provided any methods for directly setting the redstone level of a block, for a very good reason; as @Reika pointed out, redstone levels are calculated dynamically. That's why any Bukkit plugin (including one of mine) which needed to produce a redstone signal generally did it with a flipped lever.

Bukkit does have methods to check if a block is either directly or indirectly powered, which may be what you're thinking of.

Ooh I remember you from Bukkit forums. Nice seeing you again.

I must have miss-remembered how the whole system works because I was sure that you could set the power state of a block. Maybe I had a hacky way of doing it. I have to go through my old code and see if I can find it.

I figured out that batteries will only output a comparator signal when activated by redstone. Not sure if intended or a bug but i'll see if I can work around that limitation.

EDIT: I couldn't find the old code but I easily replaced it. Check it out!

DCoiqG4.gif


Now to find a way to power redstone devices directly.
 
Last edited:
  • Like
Reactions: desht

1M Industries

New Member
Jul 29, 2019
537
0
0
Minecraft crashed and said to poke you, sooooo....
2014-11-06 21:21:44 [INFO] [STDERR] java.net.ConnectException: Connection timed out
2014-11-06 21:21:44 [INFO] [STDERR] at java.net.PlainSocketImpl.socketConnect(Native Method)
2014-11-06 21:21:44 [INFO] [STDERR] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)
2014-11-06 21:21:44 [INFO] [STDERR] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
2014-11-06 21:21:44 [INFO] [STDERR] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)
2014-11-06 21:21:44 [INFO] [STDERR] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
2014-11-06 21:21:44 [INFO] [STDERR] at java.net.Socket.connect(Socket.java:579)
2014-11-06 21:21:44 [INFO] [STDERR] at java.net.Socket.connect(Socket.java:528)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.NetworkClient.doConnect(NetworkClient.java:180)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.http.HttpClient.openServer(HttpClient.java:432)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.http.HttpClient.openServer(HttpClient.java:527)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.http.HttpClient.<init>(HttpClient.java:211)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.http.HttpClient.New(HttpClient.java:308)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.http.HttpClient.New(HttpClient.java:326)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:996)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:850)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300)
2014-11-06 21:21:44 [INFO] [STDERR] at java.net.URL.openStream(URL.java:1037)
2014-11-06 21:21:44 [INFO] [STDERR] at Reika.DragonAPI.IO.ReikaFileReader.getReader(ReikaFileReader.java:65)
2014-11-06 21:21:44 [INFO] [STDERR] at Reika.DragonAPI.IO.ReikaFileReader.getFileAsLines(ReikaFileReader.java:149)
2014-11-06 21:21:44 [INFO] [STDERR] at Reika.DragonAPI.Auxiliary.CommandableUpdateChecker$UpdateChecker.getLatestVersion(CommandableUpdateChecker.java:279)
2014-11-06 21:21:44 [INFO] [STDERR] at Reika.DragonAPI.Auxiliary.CommandableUpdateChecker$UpdateChecker.access$300(CommandableUpdateChecker.java:266)
2014-11-06 21:21:44 [INFO] [STDERR] at Reika.DragonAPI.Auxiliary.CommandableUpdateChecker.registerMod(CommandableUpdateChecker.java:98)
2014-11-06 21:21:44 [INFO] [STDERR] at Reika.DragonAPI.Base.DragonAPIMod.basicSetup(DragonAPIMod.java:61)
2014-11-06 21:21:44 [INFO] [STDERR] at Reika.DragonAPI.DragonAPIInit.preload(DragonAPIInit.java:162)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
2014-11-06 21:21:44 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:606)
2014-11-06 21:21:44 [INFO] [STDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
2014-11-06 21:21:44 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:606)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
2014-11-06 21:21:44 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201)
2014-11-06 21:21:44 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
2014-11-06 21:21:44 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:606)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
2014-11-06 21:21:44 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
2014-11-06 21:21:44 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112)
2014-11-06 21:21:44 [INFO] [STDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:522)
2014-11-06 21:21:44 [INFO] [STDERR] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:183)
2014-11-06 21:21:44 [INFO] [STDERR] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:473)
2014-11-06 21:21:44 [INFO] [STDERR] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:808)
2014-11-06 21:21:44 [INFO] [STDERR] at net.minecraft.client.main.Main.main(SourceFile:101)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
2014-11-06 21:21:44 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
2014-11-06 21:21:44 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:606)
2014-11-06 21:21:44 [INFO] [STDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
2014-11-06 21:21:44 [INFO] [STDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
2014-11-06 21:21:44 [INFO] [STDOUT] DRAGONAPI: There was an error: Could not access online version reference. Please notify Reika
2014-11-06 21:21:44 [INFO] [STDOUT] CAVECONTROL: Creating logger. Log Loading: true; Debug mode: false; Warnings: false
I am not sure what caused this, but we have been having network issues lately.

EDIT: Above that was this:
2014-11-06 21:27:46 [SEVERE] [TConstruct] Server returned HTTP response code: 509 for URL: https://dl.dropboxusercontent.com/u/42769935/sticks.txt
java.io.IOException: Server returned HTTP response code: 509 for URL: https://dl.dropboxusercontent.com/u/42769935/sticks.txt
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1626)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)
at tconstruct.util.player.TPlayerHandler.buildStickURLDatabase(TPlayerHandler.java:420)
at tconstruct.util.player.TPlayerHandler.<init>(TPlayerHandler.java:403)
at tconstruct.TConstruct.preInit(TConstruct.java:161)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545)
at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112)
at cpw.mods.fml.common.Loader.loadMods(Loader.java:522)
at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:183)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:473)
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:808)
at net.minecraft.client.main.Main.main(SourceFile:101)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
at net.minecraft.launchwrapper.Launch.main(Launch.java:27)

EDIT2: It kept going on this try and produced this:
2014-11-06 21:42:10 [INFO] [STDERR] java.net.ConnectException: Connection timed out
2014-11-06 21:42:10 [INFO] [STDERR] at java.net.PlainSocketImpl.socketConnect(Native Method)
2014-11-06 21:42:10 [INFO] [STDERR] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)
2014-11-06 21:42:10 [INFO] [STDERR] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
2014-11-06 21:42:10 [INFO] [STDERR] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)
2014-11-06 21:42:10 [INFO] [STDERR] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
2014-11-06 21:42:10 [INFO] [STDERR] at java.net.Socket.connect(Socket.java:579)
2014-11-06 21:42:10 [INFO] [STDERR] at java.net.Socket.connect(Socket.java:528)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.NetworkClient.doConnect(NetworkClient.java:180)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.http.HttpClient.openServer(HttpClient.java:432)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.http.HttpClient.openServer(HttpClient.java:527)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.http.HttpClient.<init>(HttpClient.java:211)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.http.HttpClient.New(HttpClient.java:308)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.http.HttpClient.New(HttpClient.java:326)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:996)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:850)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300)
2014-11-06 21:42:10 [INFO] [STDERR] at java.net.URL.openStream(URL.java:1037)
2014-11-06 21:42:10 [INFO] [STDERR] at Reika.DragonAPI.IO.ReikaFileReader.getReader(ReikaFileReader.java:65)
2014-11-06 21:42:10 [INFO] [STDERR] at Reika.DragonAPI.IO.ReikaFileReader.getFileAsLines(ReikaFileReader.java:149)
2014-11-06 21:42:10 [INFO] [STDERR] at Reika.DragonAPI.Auxiliary.CommandableUpdateChecker$UpdateChecker.getLatestVersion(CommandableUpdateChecker.java:279)
2014-11-06 21:42:10 [INFO] [STDERR] at Reika.DragonAPI.Auxiliary.CommandableUpdateChecker$UpdateChecker.access$300(CommandableUpdateChecker.java:266)
2014-11-06 21:42:10 [INFO] [STDERR] at Reika.DragonAPI.Auxiliary.CommandableUpdateChecker.registerMod(CommandableUpdateChecker.java:98)
2014-11-06 21:42:10 [INFO] [STDERR] at Reika.DragonAPI.Base.DragonAPIMod.basicSetup(DragonAPIMod.java:61)
2014-11-06 21:42:10 [INFO] [STDERR] at Reika.RotaryCraft.RotaryCraft.preload(RotaryCraft.java:315)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
2014-11-06 21:42:10 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:606)
2014-11-06 21:42:10 [INFO] [STDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
2014-11-06 21:42:10 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:606)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
2014-11-06 21:42:10 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201)
2014-11-06 21:42:10 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
2014-11-06 21:42:10 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:606)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
2014-11-06 21:42:10 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
2014-11-06 21:42:10 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112)
2014-11-06 21:42:10 [INFO] [STDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:522)
2014-11-06 21:42:10 [INFO] [STDERR] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:183)
2014-11-06 21:42:10 [INFO] [STDERR] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:473)
2014-11-06 21:42:10 [INFO] [STDERR] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:808)
2014-11-06 21:42:10 [INFO] [STDERR] at net.minecraft.client.main.Main.main(SourceFile:101)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
2014-11-06 21:42:10 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
2014-11-06 21:42:10 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:606)
2014-11-06 21:42:10 [INFO] [STDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
2014-11-06 21:42:10 [INFO] [STDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
2014-11-06 21:42:10 [INFO] [STDOUT] ROTARYCRAFT: There was an error: Could not access online version reference. Please notify Reika
And so on for each and every single one of your mods.
 
Last edited:

1M Industries

New Member
Jul 29, 2019
537
0
0
I think it has to do with some strange tinkering your server's admins did on it, not sure though
No clue, this is the first time this has happened. I have reliably been booting up this same exact pack for almost a month and a half with no issues, and there were no changes to the pack recently, sooooo...... No clue.
 

AdmiralKirov

New Member
Jul 29, 2019
69
0
0
So, blame what has changed before that priblem arised, it is very likely to be a connection-related crash (the unreachable .txt files hosted in the dropbox storage that your client tried to access could be an hint), it's hardly Reika's fault
 

1M Industries

New Member
Jul 29, 2019
537
0
0
Thing is, it said to ask Reika, so I did. It is not serious, it just means that MC takes 10(I timed it.) minutes to boot up. I am not even kidding about that.
 

Celestialphoenix

Too Much Free Time
Nov 9, 2012
3,741
3,204
333
Tartarus.. I mean at work. Same thing really.
10 minutes for a heavy modded minecraft client is slow, but not something to worry about.

The excessive loading/wait is more to do with the number of mods installed, rather than individual mods.
[Obviously bigger mods will take longer- but theres only so much optimisation someone can do, and there are some aspects of the load time that cannot be helped without redesigning large parts of forge/minecraft]​

I've tried a couple of the stupid packs with 200-250 mods, it takes around 20 minutes to load, 5 minutes to join a server, or 7 minutes to generate a new world. [game itself runs around 15-25fps, its playable if you're patient]
 

EyeDeck

Well-Known Member
Apr 16, 2013
236
87
54
The last time I was running 1.6.4 I had the unreachable version file issue, too. It took a few minutes for each of Reikas' mods to time out, raising the client start time from about a minute to something like 15. It definitely isn't just general modded client slowness.
 
  • Like
Reactions: Bigpak

AdmiralKirov

New Member
Jul 29, 2019
69
0
0
I misunderstood everything in the logs and assumed that crash was happening only when connecting to a multiplayer server, my bad, I'll go close myself in the shame closet for a couple of hours now :(