Jump to content

Recommended Posts

Posted

Hey ! I don't know if my post is in the right topic theme, but I really need your help...

I've made a custom MC Launcher, and when I'm trying to launch the game, I've an error.

 

Here's all the logs

[16:50:14] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[16:50:14] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[16:50:14] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

[16:50:14] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading

[16:50:14] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_261, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_261

[16:50:14] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:50:14] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

[16:50:14] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:50:14] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:50:14] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[16:50:24] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557

[16:50:24] [main/INFO] [FML]: Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc

[16:50:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[16:50:24] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

[16:50:25] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker

[16:50:25] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker

[16:50:25] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[16:50:26] [main/ERROR] [LaunchWrapper]: Unable to launch
java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_261]
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_261]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_261]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_261]
        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:?]
Caused by: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 3
        at com.google.gson.Gson.fromJson(Gson.java:815) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:717) ~[Gson.class:?]
        at net.minecraft.client.main.Main.main(SourceFile:116) ~[Main.class:?]
        ... 6 more
Caused by: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 3
        at com.google.gson.stream.JsonReader.beginArray(JsonReader.java:338) ~[JsonReader.class:?]
        at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:172) ~[MapTypeAdapterFactory$Adapter.class:?]
        at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[MapTypeAdapterFactory$Adapter.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:717) ~[Gson.class:?]
        at net.minecraft.client.main.Main.main(SourceFile:116) ~[Main.class:?]
        ... 6 more

Exception in thread "main"
[16:50:27] [main/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: cpw.mods.fml.relauncher.FMLSecurityManager$ExitTrappedException
[16:50:27] [main/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at cpw.mods.fml.relauncher.FMLSecurityManager.checkPermission(FMLSecurityManager.java:25)
[16:50:27] [main/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.SecurityManager.checkExit(Unknown Source)
[16:50:27] [main/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.Runtime.exit(Unknown Source)
[16:50:27] [main/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at java.lang.System.exit(Unknown Source)
[16:50:27] [main/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at net.minecraft.launchwrapper.Launch.launch(Launch.java:138)
[16:50:27] [main/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]:   at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

 

Using :

Node.JS ,

- Electron Framework,

- and "minecraft-launcher-core".

(MLC version : 3.14.6)

 

Please help me, i need to send this launcher to a friend...

 

- Kazzookay.

Posted
9 minutes ago, diesieben07 said:
  1. Do not make your own launcher.
  2. 1.7.10 is no longer supported.

Hmm. Thanks, but I make my own launcher if I want.

Posted
20 minutes ago, diesieben07 said:

Please be aware that making users enter their Mojang credentials into your own software is potentially against the Minecraft EULA and definitely against Mojang's wishes.

 

- AZ Launcher,

- Pactify Launcher,

- Badlion Client,

- FTB Launcher, 

- MultiMC

- T-Launcher...

 

Go to their forums and tell them "It's not legal !".

  • Guest locked this topic
Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I created a modded Minecraft pack and subsequent server for My Fiance and I to play on, we are both new to modding, and have no experience of what mods go together. We gave it a shot and made a pretty good pack, based on some mods we saw previously in All The Mods 9, plus some other building and fun mods. Everything was great, server was running for 10 days(?) and went through multiple subsequent restart cycles (wasn't online 24/7). We were wrapping up for the night, I did /saveall in game, and the command said the world was finished saving. I then did /stop. Following morning we attempted to start the server and it will not get past: [19:25:04] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for dimension minecraft:overworld I attempted to take out the world, and load it on Singleplayer, however same issue, world wont load. I deleted the "serverconfig" directory and it will also not load. I removed the world from the server, thus allowing it to generate a new world, and that worked fine. But our current world will not load anywhere. I am aware of some errors in the logs due to some mismatching, and incompatibilities; I didn't know what was strictly client-side, and what needed to go onto the server, I also didn't know what performance mods did what, so there is a potential multiple were doing the same thing, however this shouldn't be responsible for the crash, as no new mods have been added for atleast 10 restart cycles and everything worked smoothly. I know there is an error about Canary conflicting with Better Chunk Loading, however that error has occured since the beginning of the server and nothing new. It is to be noted that there isn't actually a crash happening. ---> Full Log <--- If this world is corrupted, is there any way to fix it? I have a backup of the world from 4 days ago, but I also dont want to have to roll back that far, I would really like to deal with the issue at hand.
    • Can be anything - start with mods having some addons like Create etc
    • Hello everyone!   I recently switched my broadband provider from BT to Hey, and I ran into a frustrating issue when trying to connect to Minecraft. I kept receiving the error message:   “Failed to connect to the server. Please disconnect from your VPN or proxy and rejoin.”   This was strange since I wasn’t using a VPN or proxy at the time. After some troubleshooting, I discovered that my new ISP might have been flagging my connection incorrectly.   To resolve this, I used a tool called Home page, which helped me manage my online profiles more effectively. By setting up a new profile, I was able to bypass the detection issue and connect to Minecraft without any problems.   If you’re facing similar issues after switching ISPs or encountering connection errors, I recommend exploring tools like Multilogin to help manage your connections.   Hope this helps someone out there!
    • do yk what kinds of mods i should test removing first? Like world generation mods first right?
  • Topics

×
×
  • Create New...

Important Information

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