The Loadlibrary failed with error 126, 87, 1114 or 1455 has been with Windows since years, and there are reports that people are still facing the problem even in the latest Windows 11. The error message occurs upon launching an application on Windows PC. the accompanying messages may be:
The specified modue could not be found
A dynamic link library (dll) initialization routine failed
There’s a long list of applications affected by this error message. But the most popular among them are:
- Adobe Suite
- BlueStacks
- Minecraft
- Microsoft Remote Desktop
- Virtual Box
- Steam
- Logitech peripherals
- Civilization VI
It’s easy to troubleshoot this problem. Continue with the guide to solve the issue on your system.
What is LoadLibrary?
Says Microsoft – LoadLibrary can be used to load a library module into the address space of the process and return a handle that can be used in GetProcAddress to get the address of a DLL function. LoadLibrary can also be used to load other executable modules. In short – it is a critical OS process that is need to work properly.
What causes the Loadlibrary failed with error on Windows PC
There can be multiple reasons behind the Loadlibrary failed with error 126, 87, 1114 or 1455 in Windows 11/10. But among all, the major reasons triggering the problem are mentioned below.
- If you haven’t provided the problematic applications with administrative rights, you will most likely face the mentioned problem.
- Not having the latest graphics driver update can be another major reason behind the problem. Additionally, a corrupted driver can also trigger the issue.
- If your system features two graphics cards, the problematic application will try to use both of them simultaneously, which will directly cause different problems, including the one in question.
- If the Windows file has been corrupted, you will face the Loadlibrary failed with error on your Windows PC.
Now that you have a piece of prior knowledge about different reasons causing the problem let’s check out how to eliminate them.
Below is a list of all the effective solutions you can try to fix Loadlibrary failed with error 126, 87, 1114 or 1455 on Windows PC.
- Restart the application and PC
- Run the application in administrator mode
- Copy the DLL file to the System32 folder
- Close unnecessary background running applications
- Run the SFC scan
- Download the latest Graphics Driver update
Now, let’s take a look at all these solutions in detail.
1] Restart the application and PC
To begin with, restart the problem at the application all over again. But make sure none of the associated services is running in the background. You can check it by opening the Task Manager and closing all the services associated with the problematic application. Once done, check if the problem is solved or not.
If you are still facing the problem, you can go with restarting the system. As it turns out, the error message can appear due to a temporary glitch. And the best thing you can do to eliminate such glitches is restart your system. Do it, and see if there’s any difference.
2] Run the application in administrator mode
As mentioned, the major reason behind the problem can be the lack of administrative privileges. Most of the applications that throw the mentioned error needs administrative rights to perform normally. But if this isn’t the case, i.e., you haven’t provided the rights, you will face different issues, including the one you’re currently facing. So, grant administrative rights to the application and check if the problem is solved.
- Open the Start Menu by pressing the Windows key.
- In the space provided, type the name of the problematic application and press Enter.
- From the result, right-click on the application and choose Open file location.
- Right-click on the application exe file in the following window and choose the Properties option.
- Click on the Compatibility tab.
- Select Run this program as an administrator.
- Click on Apply > OK.
Now, restart your system, and launch the application. Check if you’re still facing the problem. If yes, try the next solution.
3] Copy the DLL file to the System32 folder
You will face the mentioned problem if the important DLL files are missing from the System32 folder. To solve the problem, you will have to copy-paste the DLL file to the required folder. Here are the steps you need to follow.
Open the Run dialogue box by pressing Windows + R shortcut key.
Copy-paste the below-mentioned location and press the enter key.
C:WindowsSystem32DriverStoreFileRepositoryu0352938.inf_amd64_e098709f94aef08dB352876
In the folder, copy the atio6axx.dll file and paste it in the following location.
C:Windowssystem32
Once done, restart your system and launch the application. Check if the problem continues.
See: Fix vulkan-1.dll not found or missing error
Sometimes, a large number of unnecessary background running applications can also be the primary reason behind the problem. In this case, the best thing to do is close all the background running applications using the Task Manager. Click the Ctrl + Shift + Esc shortcut key to open Task Manager > Right-click on unnecessary applications > End Task.
Now, check if the problem persists. If yes, continue with the guide.
5] Run the SFC scan
You can run the SFC scan on your Windows PC to fix the Loadlibrary failed with error 126. The SFC scan helps to scan and restore corrupt Windows system files. You can run the SFC scan by following the below steps.
- Open Command Prompt in administrator mode.
- Type the following command and press enter.
sfc /scannow
Wait until the command is executed. Once done, check for the problem.
See: Fix Wireless Display Install Failed Error
6] Download the latest Graphics Driver update
The mentioned error can be caused due to updated or corrupted graphics driver. In either case, the best thing you can do is download the latest graphics driver update. Here are the steps you need to follow to get the work done.
- Check Optional Updates to update the driver.
- Go to the manufacturer’s website and download your driver.
- Update your driver from the Device Manager.
Install the downloaded driver on your system, followed by a simple restart.
Read: Access is Denied error while installing software
How do you fix error code 126 on Minecraft?
It’s very easy to troubleshoot the error code 126 on Minecraft. You can try either of these steps to solve the problem: Run Minecraft in administrator mode, perform Clean Boot, Run SFC scan, and download the latest graphics driver update. If nothing works, you can reinstall the game to solve the problem.
What is Loadlibrary failed with Error 87?
The Loadlibrary failed with Error 87 hawkers due to machine graphics card configuration. In laymen’s terms, the problem indicates that you need to download the latest graphics driver update. It’s very easy to troubleshoot Loadlibrary failed with Error 87.
Read Next: Event ID 307 and 304 with error code 0x801c001d.
I’ve trouble with running my isolated .NET 5 Azure Function on my local computer and Visual Studio 2022. I’ve next message:
Failed to load the dll from [C:Users***AppDataLocalAzureFunctionsToolsReleases3.30.1cli_x64hostpolicy.dll], HRESULT: 0x800700C1
An error occurred while loading required library hostpolicy.dll from [C:Users***AppDataLocalAzureFunctionsToolsReleases3.30.1cli_x64]
C:Program Files (x86)dotnetdotnet.exe (process 15628) exited with code -2147450750.
Press any key to close this window . . .
Here is the code of the project:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<!-- Some code here -->
</ItemGroup>
<ItemGroup>
<!-- Some code here -->
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>
I’ve tried these things:
- Adding
<RuntimeIdentifiers>win10-x64;win7-x86</RuntimeIdentifiers>
to thePropertyGroup
tag of the project file _(like on this question Error loading hostpolicy.dll while deploying .NET Core console app to Azure WebJobs) → Didn’t work - Setting the path environment variable
C:Program Filesdotnet
aboveC:Program Files (x86)dotnet
(like on this article .NET 6 Azure Functions Isolated: An error occurred while loading required library hostpolicy.dll) → Didn’t work - Droped and recreated the project → Didn’t work
- Switching to Visual Studio 2019 → Working
Why doesn’t it work with Visual Studio 2022?
Если вы ищете как runtime error исправить — вы попали по адресу.
Причин появления таковой может быть огромное множество.
Чаще всего причина состоит в том, что выходит новая версия того или иного приложения/игры и она устанавливается прямо поверх старой.
Хотя это далеко не единственная ситуация, которая может вызвать ее появление.
После того, как вы нажимаете на единственную кнопку в окне ошибки, оно просто закрывается и программа также перестает работать.
Бывает, что она все же продолжает работать, но в ней невозможно ничего сохранить. В любом случае, есть несколько способов исправить ее.
Как выглядит ошибка
Способ №1. CCleaner
Самое простое решение заключается в том, чтобы воспользоваться программой для чистки реестра. Как это работает?
Все просто – чистильщик реестра, собственно, и предназначен для того, чтобы исправлять всевозможные проблемы, вроде той, которую рассматриваем мы, систематизировать файлы и добавлять то, чего недостает ему для нормальной работы.
Лучшей по праву считается CCleaner, хотя вы можете воспользоваться и другой.
Чтобы использовать ее, сделайте вот что:
- Скачайте (вот ссылка на бесплатную) и установите программу.
- Запустите. Перейдите на вкладку «Реестр» на панели слева.
- В разделе «Целостность» поставьте галочки на всех возможных пунктах – никто не знает, в чем именно проблема.
- Нажмите кнопку «Поиск проблем». Когда этот процесс закончится, нажмите кнопку «Исправить…».
Использование
- Подождите, пока приложение исправит все проблемы. Перезагрузите компьютер.
После этого runtime error должен перестать появляться. Если нет, переходим к следующему решению.
Способ №2. DirectX
Вполне вероятно, что ее появление вызывают какие-то проблемы с DirectX. Возможно, какие-то файлы исполняемых библиотек были повреждены или же существующие библиотеки банально устарели.
В любом случае, лучше всего просто установить наиболее актуальные варианты и, опять же, перезагрузить компьютер.
Для этого зайдите на сайт Microsoft, на страницу с возможностью скачать DirectX. Запустите скачанный файл и выполните все действия, подразумевающие установку исполняемых библиотек.
Здесь нет никаких особых рекомендаций – обычная.
Страница загрузки DirectX
Если после установки и перезагрузки компьютера ошибка не исчезла, идем дальше.
Способ №3. Visual C++
О распространяемом пакете Visual C++ в контексте рассматриваемой проблемы можно скачать то же самое, что и о библиотеках DirectX.
Возможно, какие-то файлы были повреждены или версия устарела.
Бывают в данном случае и другие ситуации, когда установленная C++ попросту не подходит для вашей операционной системы.
Ниже приведена таблица с вариантами, которые подходят для разных версий ОС.
Операционная система | Требуемая Visual C++ |
---|---|
Windows XP и ниже | C++2008 |
Windows 7 | C++2010 |
Windows 8 и 10 | Наиболее актуальная на данный момент |
Так вот, в зависимости от того, какая у вас ОС, вам следует скачать и инсталировать на свой компьютер C++2008 (64-бит, 32-бит), C++2010 (64-бит, 32-бит) или же C++2015 обновление 3.
Это наиболее актуальная версия по состоянию на июнь 2017 года. В будущем выйдут новые, поэтому следите за новостями на официальном сайте Microsoft.
Скачивание происходит одинаково – выбираем язык распространяемого компонента и жмем кнопку «Скачать». После этого останется запустить загруженный файл.
После этого перезагрузите компьютер.
Страница загрузки Visual C++
Способ №4. Microsoft .NET Framework
Здесь все то же самое – Microsoft .NET Framework тоже может вызывать рассматриваемую проблему из-за отсутствия каких-то собственных файлов. И этот компонент также нужно скачать и установить.
Но есть определенный, правильный порядок ее инсталяции:
Сначала необходимо инсталируйте версию 2.0 (вот ссылка). Попробуйте запустить программу, в которой раньше возникала проблема, если она не исчезла, устанавливайте дальше.
После этого 3.0 (скачать).
Если не помогает, 4.0 (ссылка).
Наконец, если у вас Windows Vista SP2, 7 SP1, 8, 8.1, Server 2008 SP2, Server 2008 R2 SP1, Server 2012 или Server 2012 R2, установите 4.6.2 (скачать).
Скачивание происходит точно так же, как и в случае с пакетами Visual C++.
Если ничего из этого не помогает, значит, случился сбой самой операционной системы. Пригласите на дом специалиста или сдайте компьютер в сервисный центр, если это возможно.
В крайнем случае, сделайте откат системы или вовсе переустановите ее.
Источник
Скачала моды, захожу в майнкрафт и вылетает, появляется консоль и там
[Loading] INITALIZING
Starting TLauncher 2.1
Machine info: Windows 8.1 6.3 x32, Java 1.8.0_131, 3293 MB RAM
Startup time: 14.01.2018 14:29:52
—
[Loading] LOADING_CONFIGURATION
Loading configuration from file: C:UsersСлавияAppDataRoaming.tlaunchertlauncher-2.0.properties
[Configuration] Constant values: {}
Selected locale: ru_RU
[Loading] LOADING_CONSOLE
[swing] Favicons loaded: 256px, 128px, 96px, 64px, 48px, 32px, 24px, 16px
[Downloader2] Loaded configuration: good
[updater] Requesting an update…
[updater] Request time: 188 ms
[browser] Loading resources…
[browser] Loading background…
[browser] Cleaning up after loading:
Starting garbage collector: 19 / 31 MB
Garbage collector completed: 14 / 31 MB
[Loading] LOADING_MANAGERS
[browser] Running in JavaFX Thread
[browser] Preparing JavaFX…
[LocalVersionList] Base directory: C:UsersСлавияAppDataRoaming.minecraft
[ProfileManager] Refreshing profiles from: C:UsersСлавияAppDataRoaming.minecraftTlauncherProfiles.json
[TlauncherManager] Refresh allowed: true
[AdvertisingStatusObserver] started to get ad information
[AdvertisingStatusObserver] finished to get add information
[TlauncherManager] Refreshing TLauncher…
[browser] Initializing…
[Loading] LOADING_WINDOW
[Loading] PREPARING_MAINPANE
[TlauncherManager] Refreshed successfully!
[VersionManager] Refreshing versions remotely…
[Downloader2] Loaded configuration: good
[LocalVersionList] Error occurred while parsing local version 1.12-ShadersMod2.7.0
org.tlauncher.exceptions.ParseException: Invalid date: 2018-01-11T16:19:32.336+03:00
at net.minecraft.launcher.versions.json.DateTypeAdapter.toDate(DateTypeAdapter.java:75)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:34)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:19)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:117)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:217)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:879)
at com.google.gson.Gson.fromJson(Gson.java:852)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:470)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:436)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:779)
at com.google.gson.Gson.fromJson(Gson.java:728)
at com.google.gson.Gson.fromJson(Gson.java:700)
at net.minecraft.launcher.updater.LocalVersionList.refreshVersions(LocalVersionList.java:55)
at org.tlauncher.tlauncher.managers.VersionManager.refreshVersions(VersionManager.java:196)
at org.tlauncher.tlauncher.managers.VersionManager.refresh(VersionManager.java:116)
at org.tlauncher.tlauncher.managers.VersionManager.startRefresh(VersionManager.java:172)
at org.tlauncher.tlauncher.managers.VersionManager$1.run(VersionManager.java:185)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at org.tlauncher.util.async.RunnableThread.run(RunnableThread.java:15)
Caused by: java.text.ParseException: Unparseable date: «2018-01-11T16:19:32.33+03:00»
at java.text.DateFormat.parse(Unknown Source)
at net.minecraft.launcher.versions.json.DateTypeAdapter.toDate(DateTypeAdapter.java:73)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:34)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:19)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:117)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:217)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:879)
at com.google.gson.Gson.fromJson(Gson.java:852)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:470)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:436)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:779)
at com.google.gson.Gson.fromJson(Gson.java:728)
at com.google.gson.Gson.fromJson(Gson.java:700)
at net.minecraft.launcher.updater.LocalVersionList.refreshVersions(LocalVersionList.java:55)
at org.tlauncher.tlauncher.managers.VersionManager.refreshVersions(VersionManager.java:196)
at org.tlauncher.tlauncher.managers.VersionManager.refresh(VersionManager.java:116)
at org.tlauncher.tlauncher.managers.VersionManager.startRefresh(VersionManager.java:172)
at org.tlauncher.tlauncher.managers.VersionManager$1.run(VersionManager.java:185)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at org.tlauncher.util.async.RunnableThread.run(RunnableThread.java:15)
Thread called by: org.tlauncher.util.async.ExtendedThread$ExtendedThreadCaller
at org.tlauncher.util.async.ExtendedThread.<init>(ExtendedThread.java:16)
at org.tlauncher.util.async.ExtendedThread.<init>(ExtendedThread.java:20)
at org.tlauncher.util.async.RunnableThread.<init>(RunnableThread.java:7)
at org.tlauncher.util.async.AsyncThread$1.newThread(AsyncThread.java:12)
at java.util.concurrent.ThreadPoolExecutor$Worker.<init>(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.addWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.execute(Unknown Source)
at org.tlauncher.util.async.AsyncThread.execute(AsyncThread.java:17)
at org.tlauncher.tlauncher.component.RefreshableComponent.asyncRefresh(RefreshableComponent.java:22)
at org.tlauncher.tlauncher.managers.ProfileManager$2.onAccountsRefreshed(ProfileManager.java:216)
at org.tlauncher.tlauncher.managers.ProfileManager$2.onProfilesRefreshed(ProfileManager.java:221)
at org.tlauncher.tlauncher.managers.ProfileManager.refresh(ProfileManager.java:97)
at org.tlauncher.tlauncher.managers.ProfileManager.init(ProfileManager.java:252)
… and 27 more
[REPO][OFFICIAL_VERSION_REPO] Selecting relevant path…
[REPO][EXTRA_VERSION_REPO] Selecting relevant path…
[REPO][sKIN_VERSION_REPO] Selecting relevant path…
[REPO][EXTRA_VERSION_REPO] Success: Reached the repo in 223 ms.
[ExtraVersionList] Got in 291 ms
[REPO][sKIN_VERSION_REPO] Success: Reached the repo in 451 ms.
[skinVersionList] Got in 493 ms
[REPO][OFFICIAL_VERSION_REPO] Success: Reached the repo in 1249 ms.
[OfficialVersionList] Got in 1299 ms
[VersionManager] Versions has been refreshed (1562 ms)
[Loading] POSTINIT_GUI
[Frame] Packing main frame…
[Frame] Resizing main pane…
Updater is already closed. Showing up…
Visibility set.
[Loading] REFRESHING_INFO
Started! (7431 ms.)
[Loading] SUCCESS
[VersionManager] Refreshing versions remotely…
[serverListManager] Refreshing servers…
[REPO][sERVERLIST_REPO] Selecting relevant path…
[TLauncher] show tlauncher!!!
[DEBUG] —— java.awt.Dimension[width=1050,height=655]
[DEBUG] —— java.awt.Dimension[width=1056,height=684]
[DEBUG] —— java.awt.Dimension[width=1050,height=70]
[DEBUG] —— java.awt.Dimension[width=1050,height=655]
[DEBUG] —— [statisticsSending] send to server = TLAUNCHER_RUNNING
«tl_run»
[LocalVersionList] Error occurred while parsing local version 1.12-ShadersMod2.7.0
org.tlauncher.exceptions.ParseException: Invalid date: 2018-01-11T16:19:32.336+03:00
at net.minecraft.launcher.versions.json.DateTypeAdapter.toDate(DateTypeAdapter.java:75)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:34)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:19)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:117)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:217)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:879)
at com.google.gson.Gson.fromJson(Gson.java:852)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:470)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:436)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:779)
at com.google.gson.Gson.fromJson(Gson.java:728)
at com.google.gson.Gson.fromJson(Gson.java:700)
at net.minecraft.launcher.updater.LocalVersionList.refreshVersions(LocalVersionList.java:55)
at org.tlauncher.tlauncher.managers.VersionManager.refreshVersions(VersionManager.java:196)
at org.tlauncher.tlauncher.managers.VersionManager.refresh(VersionManager.java:116)
at org.tlauncher.tlauncher.managers.VersionManager.startRefresh(VersionManager.java:172)
at org.tlauncher.tlauncher.managers.VersionManager$1.run(VersionManager.java:185)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at org.tlauncher.util.async.RunnableThread.run(RunnableThread.java:15)
Caused by: java.text.ParseException: Unparseable date: «2018-01-11T16:19:32.33+03:00»
at java.text.DateFormat.parse(Unknown Source)
at net.minecraft.launcher.versions.json.DateTypeAdapter.toDate(DateTypeAdapter.java:73)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:34)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:19)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:117)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:217)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:879)
at com.google.gson.Gson.fromJson(Gson.java:852)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:470)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:436)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:779)
at com.google.gson.Gson.fromJson(Gson.java:728)
at com.google.gson.Gson.fromJson(Gson.java:700)
at net.minecraft.launcher.updater.LocalVersionList.refreshVersions(LocalVersionList.java:55)
at org.tlauncher.tlauncher.managers.VersionManager.refreshVersions(VersionManager.java:196)
at org.tlauncher.tlauncher.managers.VersionManager.refresh(VersionManager.java:116)
at org.tlauncher.tlauncher.managers.VersionManager.startRefresh(VersionManager.java:172)
at org.tlauncher.tlauncher.managers.VersionManager$1.run(VersionManager.java:185)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at org.tlauncher.util.async.RunnableThread.run(RunnableThread.java:15)
Thread called by: org.tlauncher.util.async.ExtendedThread$ExtendedThreadCaller
at org.tlauncher.util.async.ExtendedThread.<init>(ExtendedThread.java:16)
at org.tlauncher.util.async.ExtendedThread.<init>(ExtendedThread.java:20)
at org.tlauncher.util.async.RunnableThread.<init>(RunnableThread.java:7)
at org.tlauncher.util.async.AsyncThread$1.newThread(AsyncThread.java:12)
at java.util.concurrent.ThreadPoolExecutor$Worker.<init>(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.addWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.execute(Unknown Source)
at org.tlauncher.util.async.AsyncThread.execute(AsyncThread.java:17)
at org.tlauncher.tlauncher.component.RefreshableComponent.asyncRefresh(RefreshableComponent.java:22)
at org.tlauncher.tlauncher.managers.ProfileManager$2.onAccountsRefreshed(ProfileManager.java:216)
at org.tlauncher.tlauncher.managers.ProfileManager$2.onProfilesRefreshed(ProfileManager.java:221)
at org.tlauncher.tlauncher.managers.ProfileManager.refresh(ProfileManager.java:97)
at org.tlauncher.tlauncher.managers.ProfileManager.init(ProfileManager.java:252)
… and 27 more
[REPO][sERVERLIST_REPO] Success: Reached the repo in 265 ms.
[serverListManager] Got in 800 ms
[serverListManager] Servers has been refreshed (826 ms)
[serverListManager] ServerList{[RemoteServer{minVersion=’1.8′, ignoreVersions=[], includeVersions=[], removedTime=[], recoveryServerTime=1, maxRemovingCountServer=3, addedDate=null}]}
[browser] add listens into server_choose
[skinVersionList] Got in 264 ms
[ExtraVersionList] Got in 279 ms
[OfficialVersionList] Got in 1045 ms
[VersionManager] Versions has been refreshed (1908 ms)
[LoginForm] Login was OK. Trying to launch now.
[Launcher] Minecraft Launcher [20;8] has initialized
[Launcher] Running under TLauncher 2.1
[Launcher] Current machine: Windows 8.1 6.3 x32, Java 1.8.0_131, 3293 MB RAM
[Launcher] Collecting info…
[TlauncherManager] before clearLibrary C:UsersСлавияAppDataRoaming.minecraftmods.minecraft C:UsersСлавияAppDataRoaming.minecraftmods1.7.10 C:UsersСлавияAppDataRoaming.minecraftmods1430660381_journeymap5.0.1_unlimited_mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1450434810_super-ores-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1452237886_op-wow-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1454493877_cabinetsreloaded-1.7.10-3.0.14.jar C:UsersСлавияAppDataRoaming.minecraftmodsBattleTowers-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsbuildcraft-6.0.18.jar C:UsersСлавияAppDataRoaming.minecraftmodschocolateQuest_1.7.10_1.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsCodeChickenLib-1.7.10-1.1.1.104-universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsdamage_indicators_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsDraconic-Evolution-1.7.10-1.0.2h.jar C:UsersСлавияAppDataRoaming.minecraftmodsdynamiclights-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsEnchanting-Plus-Mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsGoki_Stats_Mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsInventoryTweaks-1.58-147.jar C:UsersСлавияAppDataRoaming.minecraftmodsiron_chests_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodslots-of-things-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsmillenaire-6.0.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsMouseTweaks-2.4.4-mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsNotEnoughItems_1.7.10_1.0.4.95_universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsUpdateCheckerMod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods[1.7.10]bspkrsCore-universal-6.13.jar
[TlauncherManager] after clearLibrary C:UsersСлавияAppDataRoaming.minecraftmods.minecraft C:UsersСлавияAppDataRoaming.minecraftmods1.7.10 C:UsersСлавияAppDataRoaming.minecraftmods1430660381_journeymap5.0.1_unlimited_mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1450434810_super-ores-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1452237886_op-wow-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1454493877_cabinetsreloaded-1.7.10-3.0.14.jar C:UsersСлавияAppDataRoaming.minecraftmodsBattleTowers-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsbuildcraft-6.0.18.jar C:UsersСлавияAppDataRoaming.minecraftmodschocolateQuest_1.7.10_1.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsCodeChickenLib-1.7.10-1.1.1.104-universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsdamage_indicators_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsDraconic-Evolution-1.7.10-1.0.2h.jar C:UsersСлавияAppDataRoaming.minecraftmodsdynamiclights-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsEnchanting-Plus-Mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsGoki_Stats_Mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsInventoryTweaks-1.58-147.jar C:UsersСлавияAppDataRoaming.minecraftmodsiron_chests_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodslots-of-things-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsmillenaire-6.0.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsMouseTweaks-2.4.4-mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsNotEnoughItems_1.7.10_1.0.4.95_universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsUpdateCheckerMod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods[1.7.10]bspkrsCore-universal-6.13.jar
[Launcher] Force update: false
[Launcher] Selected version: Forge 1.7.10
[Launcher] Selected account: Account{displayName=null, userid=null, uuid=null, username=AppLe000}
[Launcher] Version sync info: VersionSyncInfo{id=’Forge 1.7.10′,
local=CompleteVersion{id=’Forge 1.7.10′, time=Mon Jan 26 13:06:52 MSK 2015, release=Wed May 14 21:29:23 MSK 2014, type=modified, class=net.minecraft.launchwrapper.Launch, minimumVersion=13, assets=’1.7.10′, source=local_version_repo, list=net.minecraft.launcher.updater.ExtraVersionList@1d8add0, libraries=[Library{name=’net.minecraftforge:forge:1.7.10-10.13.4.1614-1.7.10′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’net.minecraft:launchwrapper:1.12′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.ow2.asm:asm-all:5.0.3′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.typesafe.akka:akka-actor_2.11:2.3.3′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’com.typesafe:config:1.2.1′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang:scala-actors-migration_2.11:1.1.0′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang:scala-compiler:2.11.1′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang.plugins:scala-continuations-library_2.11:1.0.2′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang.plugins:scala-continuations-plugin_2.11.1:1.0.2′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang:scala-library:2.11.1′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang:scala-parser-combinators_2.11:1.0.1′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang:scala-reflect:2.11.1′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang:scala-swing_2.11:1.0.1′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’org.scala-lang:scala-xml_2.11:1.0.2′, rules=null, natives=null, extract=null, packed=’forge’}, Library{name=’lzma:lzma:0.0.1′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.google.guava:guava:17.0′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.mojang:netty:1.6′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.mojang:realms:1.3.5′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.apache.commons:commons-compress:1.8.1′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.apache.httpcomponents:httpclient:4.3.3′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’commons-logging:commons-logging:1.1.3′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.apache.httpcomponents:httpcore:4.3.2′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’java3d:vecmath:1.3.1′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’net.sf.trove4j:trove4j:3.0.3′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.ibm.icu:icu4j-core-mojang:51.2′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’net.sf.jopt-simple:jopt-simple:4.5′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.paulscode:codecjorbis:20101023′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.paulscode:codecwav:20101023′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.paulscode:libraryjavasound:20101123′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.paulscode:librarylwjglopenal:20100824′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.paulscode:soundsystem:20120107′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’io.netty:netty-all:4.0.10.Final’, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.google.guava:guava:15.0′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.apache.commons:commons-lang3:3.1′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’commons-io:commons-io:2.4′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’commons-codec:commons-codec:1.9′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’net.java.jinput:jinput:2.0.5′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’net.java.jutils:jutils:1.0.0′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.google.code.gson:gson:2.2.4′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’com.mojang:authlib:1.5.21′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.apache.logging.log4j:log4j-api:2.0-beta9′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.apache.logging.log4j:log4j-core:2.0-beta9′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.lwjgl.lwjgl:lwjgl:2.9.1′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.lwjgl.lwjgl:lwjgl_util:2.9.1′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’org.lwjgl.lwjgl:lwjgl-platform:2.9.1′, rules=null, natives={LINUX=natives-linux, OSX=natives-osx, WINDOWS=natives-windows}, extract=net.minecraft.launcher.versions.ExtractRules@1737f22, packed=’null’}, Library{name=’net.java.jinput:jinput-platform:2.0.5′, rules=null, natives={LINUX=natives-linux, OSX=natives-osx, WINDOWS=natives-windows}, extract=net.minecraft.launcher.versions.ExtractRules@aa34b8, packed=’null’}, Library{name=’tv.twitch:twitch:5.16′, rules=null, natives=null, extract=null, packed=’null’}, Library{name=’tv.twitch:twitch-platform:5.16′, rules=[Rule{action=ALLOW, os=null}, Rule{action=DISALLOW, os=OSRestriction{name=LINUX, version=’null’}}], natives={LINUX=natives-linux, OSX=natives-osx, WINDOWS=natives-windows-${arch}}, extract=net.minecraft.launcher.versions.ExtractRules@1900cd4, packed=’null’}, Library{name=’tv.twitch:twitch-external-platform:4.5′, rules=[Rule{action=ALLOW, os=OSRestriction{name=WINDOWS, version=’null’}}], natives={WINDOWS=natives-windows-${arch}}, extract=net.minecraft.launcher.versions.ExtractRules@c40e44, packed=’null’}]},
remote=PartialVersion{id=’Forge 1.7.10′, time=Mon Jan 26 13:06:52 MSK 2015, release=Wed May 14 21:29:23 MSK 2014, type=modified, source=extra_version_repo, skinVersion=false, list=net.minecraft.launcher.updater.ExtraVersionList@1d8add0}, isInstalled=true, hasRemote=true, isUpToDate=true}
[Launcher] Java path: C:Program Files (x86)Javajre1.8.0_131binjavaw.exe
[Launcher] Checking conditions…
[Launcher] Comparing assets…
[AssetsManager] Checking resources…
[AssetsManager] Reading indexes from file C:UsersСлавияAppDataRoaming.minecraftassetsindexes1.7.10.json
[AssetsManager] Fast comparing: true
[Launcher] Delta time to compare assets: 2238 ms.
[VersionManager] Required for version Forge 1.7.10: []
[Launcher] Unpacking natives…
[Launcher] Constructing process…
[Launcher] Constructing classpath…
[Launcher] Half command (characters are not escaped):
C:Program Files (x86)Javajre1.8.0_131binjavaw.exe -Xmx716M -Djava.library.path=C:UsersСлавияAppDataRoaming.minecraftversionsForge 1.7.10natives -cp C:UsersСлавияAppDataRoaming.minecraftlibrariesnetminecraftforgeforge1.7.10-10.13.4.1614-1.7.10forge-1.7.10-10.13.4.1614-1.7.10.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesnetminecraftlaunchwrapper1.12launchwrapper-1.12.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgow2asmasm-all5.0.3asm-all-5.0.3.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescomtypesafeakkaakka-actor_2.112.3.3akka-actor_2.11-2.3.3.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescomtypesafeconfig1.2.1config-1.2.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langscala-actors-migration_2.111.1.0scala-actors-migration_2.11-1.1.0.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langscala-compiler2.11.1scala-compiler-2.11.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langpluginsscala-continuations-library_2.111.0.2scala-continuations-library_2.11-1.0.2.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langpluginsscala-continuations-plugin_2.11.11.0.2scala-continuations-plugin_2.11.1-1.0.2.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langscala-library2.11.1scala-library-2.11.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langscala-parser-combinators_2.111.0.1scala-parser-combinators_2.11-1.0.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langscala-reflect2.11.1scala-reflect-2.11.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langscala-swing_2.111.0.1scala-swing_2.11-1.0.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgscala-langscala-xml_2.111.0.2scala-xml_2.11-1.0.2.jar;C:UsersСлавияAppDataRoaming.minecraftlibrarieslzmalzma.0.1lzma-0.0.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescommojangnetty1.6netty-1.6.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescommojangrealms1.3.5realms-1.3.5.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesjava3dvecmath1.3.1vecmath-1.3.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesnetsftrove4jtrove4j3.0.3trove4j-3.0.3.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.5jopt-simple-4.5.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesionettynetty-all4.0.10.Finalnetty-all-4.0.10.Final.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescomgoogleguavaguava15.0guava-15.0.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.1commons-lang3-3.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.1lwjgl-2.9.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.1lwjgl_util-2.9.1.jar;C:UsersСлавияAppDataRoaming.minecraftlibrariestvtwitchtwitch5.16twitch-5.16.jar;C:UsersСлавияAppDataRoaming.minecraftversionsForge 1.7.10Forge 1.7.10.jar -Dfml.ignoreInvalidMinecraftCertificates=true -Dfml.ignorePatchDiscrepancies=true -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M net.minecraft.launchwrapper.Launch
[Launcher] Getting Minecraft arguments…
read servers from servers.dat [server{name=’Сервер Minecraft’, address=’192.168.0.103:61888′, ip=’192.168.0.103′, port=’61888′, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’hypixel.net’, ip=’hypixel.net’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’fluxmc.me’, ip=’fluxmc.me’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’enderdest.ru’, ip=’enderdest.ru’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Эшли;3′, address=’212.22.93.34:25588′, ip=’212.22.93.34′, port=’25588′, hideAddress=false, acceptTextures=0}, Server{name=’Сервер хелнезера’, address=’magicmc.su’, ip=’magicmc.su’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’Op-mine.ru’, ip=’Op-mine.ru’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’mc.reallyworld.ru’, ip=’mc.reallyworld.ru’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’mc.boommine.ru’, ip=’mc.boommine.ru’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’minecraftonline.com’, ip=’minecraftonline.com’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’mc.prostocraft.ru’, ip=’mc.prostocraft.ru’, port=’null’, hideAddress=false, acceptTextures=0}]
[innerMinecraftServersImpl] search removed servers
[innerMinecraftServersImpl] prepare inner servers
[DEBUG] —— filtered versions are RemoteServer{minVersion=’1.8′, ignoreVersions=[], includeVersions=[], removedTime=[], recoveryServerTime=1, maxRemovingCountServer=3, addedDate=Sun Jan 14 13:27:40 MSK 2018}
[DEBUG] —— after filtering versions are [latest-release, 1.12.2, ForgeOptiFine 1.12.2, OptiFine 1.12.2, 1.12.1, 1.12, ForgeOptiFine 1.12, 1.11.2, Forge 1.11.2, ForgeOptiFine 1.11.2, OptiFine 1.11.2, 1.11.1, 1.11, Forge 1.11, ForgeOptiFine 1.11, OptiFine 1.11, 1.10.2, Forge 1.10.2, ForgeOptiFine 1.10.2, OptiFine 1.10.2, 1.10.1, 1.10, Forge 1.10, ForgeOptiFine 1.10, OptiFine 1.10, 1.9.4, Forge 1.9.4, ForgeOptiFine 1.9.4, OptiFine 1.9.4, 1.9.3, 1.9.2, OptiFine 1.9.2, 1.9.1, 1.9, Forge 1.9, ForgeOptiFine 1.9, OptiFine 1.9, 1.8.9, Forge 1.8.9, ForgeOptiFine 1.8.9, OptiFine 1.8.9, 1.8.8, Forge 1.8.8, ForgeOptiFine 1.8.8, OptiFine 1.8.8, 1.8.7, OptiFine 1.8.7, 1.8.6, 1.8.5, 1.8.4, OptiFine 1.8.4, 1.8.3, OptiFine 1.8.3, 1.8.2, 1.8.1, OptiFine 1.8.1, 1.8]
save servers to servers.dat [server{name=’Сервер Minecraft’, address=’192.168.0.103:61888′, ip=’192.168.0.103′, port=’61888′, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’hypixel.net’, ip=’hypixel.net’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’fluxmc.me’, ip=’fluxmc.me’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’enderdest.ru’, ip=’enderdest.ru’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Эшли;3′, address=’212.22.93.34:25588′, ip=’212.22.93.34′, port=’25588′, hideAddress=false, acceptTextures=0}, Server{name=’Сервер хелнезера’, address=’magicmc.su’, ip=’magicmc.su’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’Op-mine.ru’, ip=’Op-mine.ru’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’mc.reallyworld.ru’, ip=’mc.reallyworld.ru’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’mc.boommine.ru’, ip=’mc.boommine.ru’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’minecraftonline.com’, ip=’minecraftonline.com’, port=’null’, hideAddress=false, acceptTextures=0}, Server{name=’Сервер Minecraft’, address=’mc.prostocraft.ru’, ip=’mc.prostocraft.ru’, port=’null’, hideAddress=false, acceptTextures=0}]
[Launcher] Launching Minecraft…
I’m hiding!
[TlauncherManager] before onMinecraftLaunch C:UsersСлавияAppDataRoaming.minecraftmods.minecraft C:UsersСлавияAppDataRoaming.minecraftmods1.7.10 C:UsersСлавияAppDataRoaming.minecraftmods1430660381_journeymap5.0.1_unlimited_mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1450434810_super-ores-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1452237886_op-wow-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1454493877_cabinetsreloaded-1.7.10-3.0.14.jar C:UsersСлавияAppDataRoaming.minecraftmodsBattleTowers-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsbuildcraft-6.0.18.jar C:UsersСлавияAppDataRoaming.minecraftmodschocolateQuest_1.7.10_1.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsCodeChickenLib-1.7.10-1.1.1.104-universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsdamage_indicators_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsDraconic-Evolution-1.7.10-1.0.2h.jar C:UsersСлавияAppDataRoaming.minecraftmodsdynamiclights-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsEnchanting-Plus-Mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsGoki_Stats_Mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsInventoryTweaks-1.58-147.jar C:UsersСлавияAppDataRoaming.minecraftmodsiron_chests_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodslots-of-things-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsmillenaire-6.0.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsMouseTweaks-2.4.4-mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsNotEnoughItems_1.7.10_1.0.4.95_universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsUpdateCheckerMod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods[1.7.10]bspkrsCore-universal-6.13.jar
[TlauncherManager] after onMinecraftLaunch C:UsersСлавияAppDataRoaming.minecraftmods.minecraft C:UsersСлавияAppDataRoaming.minecraftmods1.7.10 C:UsersСлавияAppDataRoaming.minecraftmods1430660381_journeymap5.0.1_unlimited_mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1450434810_super-ores-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1452237886_op-wow-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1454493877_cabinetsreloaded-1.7.10-3.0.14.jar C:UsersСлавияAppDataRoaming.minecraftmodsBattleTowers-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsbuildcraft-6.0.18.jar C:UsersСлавияAppDataRoaming.minecraftmodschocolateQuest_1.7.10_1.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsCodeChickenLib-1.7.10-1.1.1.104-universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsdamage_indicators_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsDraconic-Evolution-1.7.10-1.0.2h.jar C:UsersСлавияAppDataRoaming.minecraftmodsdynamiclights-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsEnchanting-Plus-Mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsGoki_Stats_Mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsInventoryTweaks-1.58-147.jar C:UsersСлавияAppDataRoaming.minecraftmodsiron_chests_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodslots-of-things-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsmillenaire-6.0.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsMouseTweaks-2.4.4-mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsNotEnoughItems_1.7.10_1.0.4.95_universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsUpdateCheckerMod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods[1.7.10]bspkrsCore-universal-6.13.jar
[DEBUG] —— [statisticsSending] send to server = GAME_RUNNING
{«gameVersion»:»Forge 1.7.10″}
[Launcher] Starting Minecraft Forge 1.7.10…
[Launcher] Launching in: C:UsersСлавияAppDataRoaming.minecraft
[Launcher] Processing post-launch actions. Assist launch: true
[TLauncher] init popupMenuManager
===============================================================================================
> [14:30:11] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
> [14:30:11] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
> [14:30:11] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
> [14:30:11] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading
> [14:30:11] [main/INFO] [FML]: Java is Java HotSpot Client VM, version 1.8.0_131, running on Windows 8.1:x86:6.3, installed at C:Program Files (x86)Javajre1.8.0_131
> [14:30:11] [main/WARN] [FML]: The coremod atomicstryker.dynamiclights.common.DLFMLCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
> [14:30:11] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
> [14:30:11] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.NoClassDefFoundError: codechicken/lib/asm/ASMInit
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at codechicken.nei.asm.NEICorePlugin.<init>(NEICorePlugin.java:18)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Constructor.newInstance(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Class.newInstance(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.CoreModManager.loadCoreMod(CoreModManager.java:501)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.CoreModManager.discoverCoreMods(CoreModManager.java:389)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.CoreModManager.handleLaunch(CoreModManager.java:221)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.FMLLaunchHandler.setupHome(FMLLaunchHandler.java:90)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.FMLLaunchHandler.setupClient(FMLLaunchHandler.java:67)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.FMLLaunchHandler.configureForClientLaunch(FMLLaunchHandler.java:34)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.common.launcher.FMLTweaker.injectIntoClassLoader(FMLTweaker.java:126)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:115)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: Caused by: java.lang.ClassNotFoundException: codechicken.lib.asm.ASMInit
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.ClassLoader.loadClass(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.ClassLoader.loadClass(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: … 15 more
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: Caused by: java.lang.NullPointerException
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: … 17 more
> [14:30:11] [main/ERROR] [FML]: An error occurred trying to configure the minecraft home at C:UsersСлавияAppDataRoaming.minecraft for Forge Mod Loader
> java.lang.NoClassDefFoundError: codechicken/lib/asm/ASMInit
> at codechicken.nei.asm.NEICorePlugin.<init>(NEICorePlugin.java:18) ~[NotEnoughItems_1.7.10_1.0.4.95_universal.jar:?]
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:1.8.0_131]
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) ~[?:1.8.0_131]
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source) ~[?:1.8.0_131]
> at java.lang.reflect.Constructor.newInstance(Unknown Source) ~[?:1.8.0_131]
> at java.lang.Class.newInstance(Unknown Source) ~[?:1.8.0_131]
> at cpw.mods.fml.relauncher.CoreModManager.loadCoreMod(CoreModManager.java:501) ~[forge-1.7.10-10.13.4.1614-1.7.10.jar:?]
> at cpw.mods.fml.relauncher.CoreModManager.discoverCoreMods(CoreModManager.java:389) ~[forge-1.7.10-10.13.4.1614-1.7.10.jar:?]
> at cpw.mods.fml.relauncher.CoreModManager.handleLaunch(CoreModManager.java:221) ~[forge-1.7.10-10.13.4.1614-1.7.10.jar:?]
> at cpw.mods.fml.relauncher.FMLLaunchHandler.setupHome(FMLLaunchHandler.java:90) [forge-1.7.10-10.13.4.1614-1.7.10.jar:?]
> at cpw.mods.fml.relauncher.FMLLaunchHandler.setupClient(FMLLaunchHandler.java:67) [forge-1.7.10-10.13.4.1614-1.7.10.jar:?]
> at cpw.mods.fml.relauncher.FMLLaunchHandler.configureForClientLaunch(FMLLaunchHandler.java:34) [forge-1.7.10-10.13.4.1614-1.7.10.jar:?]
> at cpw.mods.fml.common.launcher.FMLTweaker.injectIntoClassLoader(FMLTweaker.java:126) [forge-1.7.10-10.13.4.1614-1.7.10.jar:?]
> at net.minecraft.launchwrapper.Launch.launch(Launch.java:115) [launchwrapper-1.12.jar:?]
> at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
> Caused by: java.lang.ClassNotFoundException: codechicken.lib.asm.ASMInit
> at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) ~[launchwrapper-1.12.jar:?]
> at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_131]
> at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_131]
> … 15 more
> Caused by: java.lang.NullPointerException
> at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ~[launchwrapper-1.12.jar:?]
> at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_131]
> at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:1.8.0_131]
> … 15 more
> Exception in thread «main» [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.NoClassDefFoundError: codechicken/lib/asm/ASMInit
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at codechicken.nei.asm.NEICorePlugin.<init>(NEICorePlugin.java:18)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Constructor.newInstance(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Class.newInstance(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.CoreModManager.loadCoreMod(CoreModManager.java:501)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.CoreModManager.discoverCoreMods(CoreModManager.java:389)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.CoreModManager.handleLaunch(CoreModManager.java:221)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.FMLLaunchHandler.setupHome(FMLLaunchHandler.java:90)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.FMLLaunchHandler.setupClient(FMLLaunchHandler.java:67)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.relauncher.FMLLaunchHandler.configureForClientLaunch(FMLLaunchHandler.java:34)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at cpw.mods.fml.common.launcher.FMLTweaker.injectIntoClassLoader(FMLTweaker.java:126)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:115)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: Caused by: java.lang.ClassNotFoundException: codechicken.lib.asm.ASMInit
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.ClassLoader.loadClass(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.ClassLoader.loadClass(Unknown Source)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: … 15 more
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: Caused by: java.lang.NullPointerException
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182)
> [14:30:11] [main/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: … 17 more
Here I am!
[VersionManager] Refreshing versions locally…
[LocalVersionList] Error occurred while parsing local version 1.12-ShadersMod2.7.0
org.tlauncher.exceptions.ParseException: Invalid date: 2018-01-11T16:19:32.336+03:00
at net.minecraft.launcher.versions.json.DateTypeAdapter.toDate(DateTypeAdapter.java:75)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:34)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:19)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:117)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:217)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:879)
at com.google.gson.Gson.fromJson(Gson.java:852)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:470)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:436)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:779)
at com.google.gson.Gson.fromJson(Gson.java:728)
at com.google.gson.Gson.fromJson(Gson.java:700)
at net.minecraft.launcher.updater.LocalVersionList.refreshVersions(LocalVersionList.java:55)
at org.tlauncher.tlauncher.managers.VersionManager.refreshVersions(VersionManager.java:196)
at org.tlauncher.tlauncher.managers.VersionManager.refresh(VersionManager.java:116)
at org.tlauncher.tlauncher.managers.VersionManager.startRefresh(VersionManager.java:172)
at org.tlauncher.tlauncher.ui.login.LoginForm.onMinecraftClose(LoginForm.java:366)
at org.tlauncher.tlauncher.minecraft.launcher.MinecraftLauncher.notifyClose(MinecraftLauncher.java:1319)
at org.tlauncher.tlauncher.minecraft.launcher.MinecraftLauncher.onJavaProcessEnded(MinecraftLauncher.java:1262)
at net.minecraft.launcher.process.ProcessMonitorThread.run(ProcessMonitorThread.java:45)
Caused by: java.text.ParseException: Unparseable date: «2018-01-11T16:19:32.33+03:00»
at java.text.DateFormat.parse(Unknown Source)
at net.minecraft.launcher.versions.json.DateTypeAdapter.toDate(DateTypeAdapter.java:73)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:34)
at net.minecraft.launcher.versions.json.DateTypeAdapter.deserialize(DateTypeAdapter.java:19)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:117)
at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:217)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:879)
at com.google.gson.Gson.fromJson(Gson.java:852)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:470)
at net.minecraft.launcher.versions.CompleteVersion$CompleteVersionSerializer.deserialize(CompleteVersion.java:436)
at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
at com.google.gson.Gson.fromJson(Gson.java:814)
at com.google.gson.Gson.fromJson(Gson.java:779)
at com.google.gson.Gson.fromJson(Gson.java:728)
at com.google.gson.Gson.fromJson(Gson.java:700)
at net.minecraft.launcher.updater.LocalVersionList.refreshVersions(LocalVersionList.java:55)
at org.tlauncher.tlauncher.managers.VersionManager.refreshVersions(VersionManager.java:196)
at org.tlauncher.tlauncher.managers.VersionManager.refresh(VersionManager.java:116)
at org.tlauncher.tlauncher.managers.VersionManager.startRefresh(VersionManager.java:172)
at org.tlauncher.tlauncher.ui.login.LoginForm.onMinecraftClose(LoginForm.java:366)
at org.tlauncher.tlauncher.minecraft.launcher.MinecraftLauncher.notifyClose(MinecraftLauncher.java:1319)
at org.tlauncher.tlauncher.minecraft.launcher.MinecraftLauncher.onJavaProcessEnded(MinecraftLauncher.java:1262)
at net.minecraft.launcher.process.ProcessMonitorThread.run(ProcessMonitorThread.java:45)
[VersionManager] Versions has been refreshed (168 ms)
[TlauncherManager] before clearLibrary C:UsersСлавияAppDataRoaming.minecraftmods.minecraft C:UsersСлавияAppDataRoaming.minecraftmods1.7.10 C:UsersСлавияAppDataRoaming.minecraftmods1430660381_journeymap5.0.1_unlimited_mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1450434810_super-ores-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1452237886_op-wow-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1454493877_cabinetsreloaded-1.7.10-3.0.14.jar C:UsersСлавияAppDataRoaming.minecraftmodsBattleTowers-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsbuildcraft-6.0.18.jar C:UsersСлавияAppDataRoaming.minecraftmodschocolateQuest_1.7.10_1.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsCodeChickenLib-1.7.10-1.1.1.104-universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsdamage_indicators_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsDraconic-Evolution-1.7.10-1.0.2h.jar C:UsersСлавияAppDataRoaming.minecraftmodsdynamiclights-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsEnchanting-Plus-Mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsGoki_Stats_Mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsInventoryTweaks-1.58-147.jar C:UsersСлавияAppDataRoaming.minecraftmodsiron_chests_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodslots-of-things-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsmillenaire-6.0.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsMouseTweaks-2.4.4-mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsNotEnoughItems_1.7.10_1.0.4.95_universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsUpdateCheckerMod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods[1.7.10]bspkrsCore-universal-6.13.jar
[TlauncherManager] clear files:C:UsersСлавияAppDataRoaming.minecraftTempOptifineStore-1.0.json
[TlauncherManager] after clearLibrary C:UsersСлавияAppDataRoaming.minecraftmods.minecraft C:UsersСлавияAppDataRoaming.minecraftmods1.7.10 C:UsersСлавияAppDataRoaming.minecraftmods1430660381_journeymap5.0.1_unlimited_mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1450434810_super-ores-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1452237886_op-wow-mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods1454493877_cabinetsreloaded-1.7.10-3.0.14.jar C:UsersСлавияAppDataRoaming.minecraftmodsBattleTowers-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsbuildcraft-6.0.18.jar C:UsersСлавияAppDataRoaming.minecraftmodschocolateQuest_1.7.10_1.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsCodeChickenLib-1.7.10-1.1.1.104-universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsdamage_indicators_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsDraconic-Evolution-1.7.10-1.0.2h.jar C:UsersСлавияAppDataRoaming.minecraftmodsdynamiclights-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsEnchanting-Plus-Mod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsGoki_Stats_Mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsInventoryTweaks-1.58-147.jar C:UsersСлавияAppDataRoaming.minecraftmodsiron_chests_mod_1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodslots-of-things-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsmillenaire-6.0.0.jar C:UsersСлавияAppDataRoaming.minecraftmodsMouseTweaks-2.4.4-mc1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmodsNotEnoughItems_1.7.10_1.0.4.95_universal.jar C:UsersСлавияAppDataRoaming.minecraftmodsUpdateCheckerMod-1.7.10.jar C:UsersСлавияAppDataRoaming.minecraftmods[1.7.10]bspkrsCore-universal-6.13.jar
[Launcher] Launcher exited.
[Launcher] Minecraft closed with exit code: 1
Захожу на версию 1.7.10, и появляется ошибка со всеми модами которые скачала -.-
Помогите пожалуйста
04.04.2019, 23:47. Показов 1827. Ответов 2
При нажатии F5 в окне дебага выводит
Код
Error: LinkageError occurred while loading main class Hello java.lang.UnsupportedClassVersionError: Hello (class file version 52.65535) was compiled with preview features that are unsupported. This version of the Java Runtime only recognizes preview features for class file version 56.65535
Результат javac -version
java -version
Код
openjdk version "12" 2019-03-19 OpenJDK Runtime Environment AdoptOpenJDK (build 12+33) OpenJDK 64-Bit Server VM AdoptOpenJDK (build 12+33, mixed mode, sharing)
Сам код
Java | ||
|
Пути в PATH прописаны, JAVA_HOME и JRE_HOME тоже указаны.
Дополнение для дебага установлено.
Этот же код без проблем компилируется и запускается в InteliJ IDEA 2019.
__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь
0
Новые и опытные пользователи Linux могут сталкиваться с ошибкой error loading shared libraries во время запуска программ, также с ней могут сталкиваться программисты и все желающие компилировать программное обеспечение в своей системе. Эта ошибка в дословном переводе означает что возникла проблема во время загрузки общей библиотеки. О том что такое библиотеки и зачем они нужны вы можете узнать из статьи библиотеки Linux.
В этой же статье мы рассмотрим что значит ошибка error while loading shared libraries более подробно, а главное, как ее решить.
Даже если вы не компилируете свои программы, то вы можете увидеть ошибку error while loading shared libraries: имя_библиотеки: cannot open shared object file: No such file or directory достаточно часто во время установки новых программ не через пакетный менеджер или программ, предназначенных для другого дистрибутива. Как я уже говорил, она возникает потому, что система не может найти библиотеку.
А вот почему ее нельзя найти и загрузить, это уже интересно. Этому может быть несколько причин:
- Библиотека не установлена в системе;
- Библиотека установлена, но неизвестно куда;
- Библиотека установлена правильно, но имеет не ту версию.
При решении проблемы мы будем руководствоваться именно этими причинами и пытаться их решить.
Как исправить ошибку?
1. Библиотека не установлена
Первый вариант, тут все понятно, библиотеки просто нет в системе, поэтому мы и получаем такую ошибку. Верный способ ее решения — просто найти пакет библиотеки с помощью пакетного менеджера и установить ее. Обычно, пакеты с библиотеками называются так же, как и сами библиотеки с префиксом lib.
Например, если нам не хватает библиотеки libfuse2.so, то мы можем найти ее в Ubuntu такой командой:
sudo apt search libfuse2
Затем осталось только установить ее:
sudo apt install libfuse2
Если перед вами стоит задача собрать программу из исходников, то вам понадобится не только установить саму библиотеку, но и заголовочные файлы для нее:
sudo apt install libfuse-dev
И так для любой библиотеки. Но это не всегда помогает.
2. Библиотека находится не в том каталоге
Бывает что библиотека установлена, мы установили ее или она поставлялась вместе с программой, но ошибка как была, так и есть. Причиной этому может быть то, что загрузчик Linux не может найти библиотеку.
Поиск библиотек выполняется по всех папках, которые указаны в конфигурационных файлах /etc/ld.conf.d/. По умолчанию, это такие каталоги, как /usr/lib, /lib, /usr/lib64, /lib64. Если библиотека установлена в другой каталог, то, возможно, это и есть причина проблемы.
Вы можете посмотреть какие библиотеки сейчас доступны загрузчику с помощью команды:
ldconfig -p
Найти, где находится ваша библиотека можно с помощью команды locate. Например, нас интересует библиотека librtfreader.so:
locate librtfreader
Теперь мы знаем, что она находится по адресу /opt/kingsoft/wps-office/office6/. А значит, для работы программы необходимо сделать чтобы загрузчик библиотек ее видел. Для этого можно добавить путь в один из файлов /etc/ld.so.conf.d/ или же в переменную LD_LIBRARY_PATH:
export LD_LIBRARY_PATH=/opt/kingsoft/wps-office/office6/
Опять же, так вы можете поставить с любой библиотекой, которая взывает ошибку. Еще один более простой метод — это просто создать символическую ссылку на нужную библиотеку в правильной папке:
ln -s /opt/kingsoft/wps-office/office6/librtfreader.so /usr/lib/librtfreader.so
3. Неверная версия библиотеки
Эта причина ошибки довольно часто встречается при использовании программ не для вашего дистрибутива. Каждая библиотека имеет дополнительную версию, так называемую ревизию, которая записывается после расширения .so. Например, libav.so.1. Так вот, номер версии меняется всякий раз, когда в библиотеку вносятся какие-либо исправления.
Часто возникает ситуация, когда в одном дистрибутиве программа собирается с зависимостью от библиотеки, например, libc.so.1, а в другом есть только libc.so.2. Отличия в большинстве случаев здесь небольшие и программа могла бы работать на второй версии библиотеки. Поэтому мы можем просто создать символическую ссылку на нее.
Например, библиотеки libusb-1.0.so.1 нет. Но зато есть libusb-1.0.so.0.1, и мы можем ее использовать:
Для этого просто создаем символическую ссылку на библиотеку:
sudo ln -s /usr/lib/libusb-1.0.so.0.1 /usr/lib/libusb-1.0.so.1
В большинстве случаев программа не заметит подмены и будет работать, как и ожидалось. Также для решения этой проблемы можно попытаться найти нужную версию библиотеки в интернете для своей архитектуры и поместить ее в папку /usr/lib/ или /usr/lib64/. Но после этого желательно обновить кэш:
sudo ldconfig
Выводы
В этой статье мы рассмотрели почему возникает ошибка Error while loading shared libraries, а также как ее решить. В большинстве случаев проблема решается довольно просто и вы получите работоспособную программу. Надеюсь, эта информация была полезной для вас.
Статья распространяется под лицензией Creative Commons ShareAlike 4.0 при копировании материала ссылка на источник обязательна .