Avorion ошибка при включении модов

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.

Already on GitHub?
Sign in
to your account

Closed

M0n7y5 opened this issue

Oct 4, 2020

· 4 comments

Closed

SteamAPI and Workshop mods not working

#11

M0n7y5 opened this issue

Oct 4, 2020

· 4 comments

Comments

@M0n7y5

Hi, i cant get this container working with workshop mods
i am getting this message

Server version, as listed publicly: 1.2.0.25399
[S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed.
dlopen failed trying to load:
steamclient.so
with error:
steamclient.so: cannot open shared object file: No such file or directory
[S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so.
SteamGameServer_Init call failed
Error starting steam-based networking. Falling back to standard TCP/UDP protocols.
The server will not be authenticated via Steam and won't show up in public server lists.
WARNING: The fallback TCP/UDP protocols are deprecated and potentially UNSAFE!
         If you're running a dedicated server, this is HIGHLY discouraged!
         Use steam networking instead; Enable with --use-steam-networking 1
Warning: No RCON password set. RCON disabled.
Found 4 mods in "/home/steam/.avorion/galaxies/avorion_galaxy/modconfig.lua".

@M0n7y5

Also this
obrazek

@rfvgyhn

I uploaded a test image. Can you try it and see if your mods work? rfvgyhn/avorion:1.2.0.25399-dev If that one works, I’ll update the standard tags with the fix.

@M0n7y5

I am gonna try it ASAP. Also i forgot mention another error.
Warning: failed to init SDL thread priority manager: SDL not found

Which can be fixed by installing SDL2 package.

@rfvgyhn

I’m going to assume it’s fixed. Feel free to reopen if it’s not. This fix plus the SDL2 fix is included in the standard tags starting from 1.2.0.25399 and 1.3.0.26854-beta.

2 participants

@rfvgyhn

@M0n7y5


r/avorion

Avorion is a space-sim sandbox game where you build your own ships and fight, trade, mine and explore your way to the center of the galaxy.




Members





Online

Avorion recently added the ability to automatically download and install content directly from the Steam Workshop.

This is now the method recommended by the developers of Avorion for installing mods, since the server (and the clients) will automatically install, and automatically update any mods from the Workshop. Mods not available on the Steam Workshop can still be used on a server, they just have to be manually installed and must be manually updated from then on.

The installation of mods from the Steam Workshop is controlled by creating and editing a file called modconfig.lua on your server. This file needs to be created or uploaded in the avorion_galaxy(if you have named your galaxy something other than the default, this folder will correspond to your galaxy’s name.) directory on the server. If the server has not been started at least once, you will not see the avorion_galaxy folder yet. Just start the server up and then stop it, and the game will create that folder.

In the modconfig.lua file, you will list mods by their Workshop ID numbers, and server will use that list to automatically download and install those mods.

Mods automatically downloaded this way are placed into a workshop folder in your avorion_galaxy folder. This folder will need to be created. The folders and files shown in the screen shot below will all be made automatically by the game, when it downloads Workshop mods listed in your modconfig.lua file.

A view of the workshop folder of an avorion server.

Inside the workshop directory, mods are stored in the content folder, in a folder labelled 445220 (the application ID number on steam for the game «avorion»). All the numbered folders inside the 445220 directory will be the downloaded mods from the Steam Workshop.

Once you’ve downloaded the mods you want from your favorite mod portal, simply upload those files to the mods folder, which may need to be manually created in the avorion_galaxy folder on the server. This is the recommended place to put all mods you add manually.

In reality, mods can be placed in almost any location, since you will specify their location in the same modconfig.lua file mentioned above.

In your avorion_galaxy folder, create a text file called modconfig.lua. On the Nodecraft control panel, when viewing the file manager window, there will be a «create file» button near the top which you can use to make a new file. Or simply upload a file you create on your own computer.

In that file, copy and paste the following text as a starting point:

modLocation = ""
forceEnabling = false

mods =
{
	{workshopid = ""},
}

allowed =
{
}

Each section of this config file, and what you need to put in it, will be explained in the following sections.

This line is specifying the location of a mods folder other then the default one of /mods in your galaxy folder.

It’s recommended by the developers of Avorion that force enabling be left turned off, as it can cause some issues which can lead to broken or corrupted save files. This is a feature intended for those people who are in the process of developing their own mods.

For Workshop mods

In the section that begins with mods = , put a line for each Steam Workshop mod in between the curly brackets underneath mods = .

Like for example:

mods =
{
	{workshopid = "1691539727"},
	{workshopid = "1691591293"}
}

The format above is very important, the workshop ID number must be surrounded by quotes, and the entire line must begin and end with curly brackets, and be followed by a comma, unless it’s the last line in the list.

If you want to temporarily disable a specific mod, it’s recommended to comment out the line (see section below on «comment characters».

For non-workshop mods (manually installed)

use the following lines in the mods = section of the config file, in between the curly brackets:

{path = prefix .. "modfilenamehere"}

It’s possible to mix both the «workshopid» and «path» in the mods = section, like the example below:

{workshopid = "1691539727"},
{workshopid = "1691591293"},
{path = prefix .. "mymod"}, 
{path = prefix .. "AnotherMod"}

The allowed = section is for client side (mostly UI mods) that are allowed on the server. It is optional, and can be left blank, with nothing between the curly brackets.

List Workshop mods in the same format as the mods =» section above.

When you create the modconfig.lua, you can add comment lines by using the characters -- anywhere in the file. The -- characters will tell the game to stop processing any instructions past those characters. Comment lines will appear as a light brown text.

Comments can be used at the beginning or end of a line. Just remember that anything after the -- will be ignored by the game.

For example:

A view of an avorion modconfig.lua file, showing comment lines

Using comments to add the actual name of the mod, like the example of the second line «modlister, by koonschi», can save you a lot of time later on if you need to look up which workshop ID is which actual mod.

Disabling a line in the config

The developer of Avorion does say that disabling a mod can cause situations that lead to corruption of save files. It’s recommended to make backups of the server before disabling previously loaded mods. Disabling a mod is probably best done as part of an investigation into issues with the mods, or in preparation for starting a whole new game.

By putting -- at the very beginning of an existing line, you can «turn off» that line.

In screenshot below, by added just the -- at the very beginning of the line, the entire workshopid = line is effectively removed from the file. The server will reach the first --, and skip the rest of the line.

Commenting out a line in the modconfig.lua file of an avorion server

Even though that line had a comment at the end, by placing comment characters at the very beginning, the entire line is now just one big «comment» (and will be skipped). Since that was the only line in the mods = section, the game will now see that section of the modconfig.lua file as being «empty» and will not download any mods.

Once the modconfig.lua file has been created and added to the server, on the very next startup the game will attempt to download all the mods listed in the file directly from Steam. You will see each mod being downloaded, and the progress of that download in the «console» tab on your Nodecraft control panel for your Avorion server. The screenshot below shows the progress of a single mod being installed.

A view of a mod being downloaded automatically by the game Avorion on startup

Immediately following that will be confirmation messages for any new commands being added by the mod, like the two commands added by the mod shown above.

Two new commands being added by a newly installed mod

This mod simply lists what mods are installed on the server, and this is done by using the commands mods or outdatedmods in chat (if you are authorized as an admin).

After Steam workshop mods are successfully installed on your server, any players that join the server will be shown a list of the installed mods and asked if they would like to install them onto their clients. If they agree, the client will automatically download the matching mods to allow them to play on the server. Players simply need to click the «connect & download» button.

A view of the screen players will see when they are prompted to download and install mods hosted on the server

Avorion recently added the ability to automatically download and install content directly from the Steam Workshop.

This is now the method recommended by the developers of Avorion for installing mods, since the server (and the clients) will automatically install, and automatically update any mods from the Workshop. Mods not available on the Steam Workshop can still be used on a server, they just have to be manually installed and must be manually updated from then on.

Workshop mods (automatically installed)

The installation of mods from the Steam Workshop is controlled by creating and editing a file called modconfig.lua on your server. This file needs to be created or uploaded in the avorion_galaxy(if you have named your galaxy something other than the default, this folder will correspond to your galaxy’s name.) directory on the server. If the server has not been started at least once, you will not see the avorion_galaxy folder yet. Just start the server up and then stop it, and the game will create that folder.

In the modconfig.lua file, you will list mods by their Workshop ID numbers, and server will use that list to automatically download and install those mods.

Mods automatically downloaded this way are placed into a workshop folder in your avorion_galaxy folder. This folder will need to be created. The folders and files shown in the screen shot below will all be made automatically by the game, when it downloads Workshop mods listed in your modconfig.lua file.

A view of the workshop folder of an avorion server.

Inside the workshop directory, mods are stored in the content folder, in a folder labelled 445220 (the application ID number on steam for the game «avorion»). All the numbered folders inside the 445220 directory will be the downloaded mods from the Steam Workshop.

Manually installed mods

Once you’ve downloaded the mods you want from your favorite mod portal, simply upload those files to the mods folder, which may need to be manually created in the avorion_galaxy folder on the server. This is the recommended place to put all mods you add manually.

In reality, mods can be placed in almost any location, since you will specify their location in the same modconfig.lua file mentioned above.

Create the config file, modconfig.lua

In your avorion_galaxy folder, create a text file called modconfig.lua. On the Nodecraft control panel, when viewing the file manager window, there will be a «create file» button near the top which you can use to make a new file. Or simply upload a file you create on your own computer.

In that file, copy and paste the following text as a starting point:

modLocation = ""
forceEnabling = false

mods =
{
	{workshopid = ""},
}

allowed =
{
}

Each section of this config file, and what you need to put in it, will be explained in the following sections.

modLocation = ""

This line is specifying the location of a mods folder other then the default one of /mods in your galaxy folder.

forceEnabling = false

It’s recommended by the developers of Avorion that force enabling be left turned off, as it can cause some issues which can lead to broken or corrupted save files. This is a feature intended for those people who are in the process of developing their own mods.

mods =

For Workshop mods

In the section that begins with mods = , put a line for each Steam Workshop mod in between the curly brackets underneath mods = .

Like for example:

mods =
{
	{workshopid = "1691539727"},
	{workshopid = "1691591293"}
}

The format above is very important, the workshop ID number must be surrounded by quotes, and the entire line must begin and end with curly brackets, and be followed by a comma, unless it’s the last line in the list.

If you want to temporarily disable a specific mod, it’s recommended to comment out the line (see section below on «comment characters».

For non-workshop mods (manually installed)

use the following lines in the mods = section of the config file, in between the curly brackets:

{path = prefix .. "modfilenamehere"}

It’s possible to mix both the «workshopid» and «path» in the mods = section, like the example below:

{workshopid = "1691539727"},
{workshopid = "1691591293"},
{path = prefix .. "mymod"}, 
{path = prefix .. "AnotherMod"}

allowed =

The allowed = section is for client side (mostly UI mods) that are allowed on the server. It is optional, and can be left blank, with nothing between the curly brackets.

List Workshop mods in the same format as the mods =» section above.

When you create the modconfig.lua, you can add comment lines by using the characters -- anywhere in the file. The -- characters will tell the game to stop processing any instructions past those characters. Comment lines will appear as a light brown text.

Comments can be used at the beginning or end of a line. Just remember that anything after the -- will be ignored by the game.

For example:

A view of an avorion modconfig.lua file, showing comment lines

Using comments to add the actual name of the mod, like the example of the second line «modlister, by koonschi», can save you a lot of time later on if you need to look up which workshop ID is which actual mod.

Disabling a line in the config

The developer of Avorion does say that disabling a mod can cause situations that lead to corruption of save files. It’s recommended to make backups of the server before disabling previously loaded mods. Disabling a mod is probably best done as part of an investigation into issues with the mods, or in preparation for starting a whole new game.

By putting -- at the very beginning of an existing line, you can «turn off» that line.

In screenshot below, by added just the -- at the very beginning of the line, the entire workshopid = line is effectively removed from the file. The server will reach the first --, and skip the rest of the line.

Commenting out a line in the modconfig.lua file of an avorion server

Even though that line had a comment at the end, by placing comment characters at the very beginning, the entire line is now just one big «comment» (and will be skipped). Since that was the only line in the mods = section, the game will now see that section of the modconfig.lua file as being «empty» and will not download any mods.

Start the Server, and the Mods will be Downloaded

Once the modconfig.lua file has been created and added to the server, on the very next startup the game will attempt to download all the mods listed in the file directly from Steam. You will see each mod being downloaded, and the progress of that download in the «console» tab on your Nodecraft control panel for your Avorion server. The screenshot below shows the progress of a single mod being installed.

A view of a mod being downloaded automatically by the game Avorion on startup

Immediately following that will be confirmation messages for any new commands being added by the mod, like the two commands added by the mod shown above.

Two new commands being added by a newly installed mod

This mod simply lists what mods are installed on the server, and this is done by using the commands mods or outdatedmods in chat (if you are authorized as an admin).

Players connecting to server can automatically download mods

After Steam workshop mods are successfully installed on your server, any players that join the server will be shown a list of the installed mods and asked if they would like to install them onto their clients. If they agree, the client will automatically download the matching mods to allow them to play on the server. Players simply need to click the «connect & download» button.

A view of the screen players will see when they are prompted to download and install mods hosted on the server

Содержание

  1. Avorion не запускается, тормозит, вылетает игра, выдает ошибку, лагает, черный экран
  2. Avorion не запускается, вылетает — решение любых технических и геймплейных проблем.
  3. Игра не запускается
  4. Игра тормозит и лагает
  5. Проблемы с модами
  6. Ошибки загрузки/обновления
  7. Вопросы по прохождению

Avorion не запускается, черный экран, тормозит и отказывается работать на компьютер. При запуски игры Avorion (2017) не происходит никак действий. После запуска игра может вылетит на рабочий стол, также после запуска игры Avorion черный экране. Проблемы при запуске на виндовс 32 бит меньше 4 ГБ ОЗУ. Пользователи столкнулись с проблемами в игре и данном случае существует решение неполадки. Также в игре на некоторых конфигурациях систему возможны проблемы лагает, фризы, тормозит, подвисает, зависает игра и для таких случает есть пару решений. Также добавлена поддержка 32 бит систем.
В игре Avorion (2017) существует множество ошибок, недоработок и багов. Плохая оптимизация игры Avorion дает о себе знать что в свою очередь влияет на слабые компьютеры.

Решение проблем с Avorion есть. Многим помогает установка обновленных драйверов или DirectX, Microsoft Visual C++, NVidia PhysX, Net Framework. Но чаше всего решение проблемы с Avorion кроется в самой игре и для этого дела вам подойдет скачать Официальный патч/фикс и проблема решится. (СКАЧАТЬ ПО ССЫЛКЕ)

Список правок в файле:
— Доработана производительность и оптимизация для всех ОС, и ошибка при которой игра не запускалась на Windows XP, Windows 7 и Windows 8
— Исправлена ошибка при запуске Avorion вылетом на рабочий стол
— Устранена ошибка с отображением на видеокартах NVidia или ATI/AMD Radeon;
— Добавлена поддержка запуска на 32 бит Виндовс/ Windows 32 bit для Avorion (2017)
— Скорректирована оптимизация для 32 битной системы
— Устранены не давали игроку пройти сюжет или карьеру в Avorion
— Устранена ошибка при вылетала критическая ошибка в Avorion
— Устранена ошибка когда игра зависала и фризила.
— Устранена Ошибка «прекращена работа программы» в Avorion
— Устранена ошибка черный экран в Avorion
— Исправлен ряд ошибок, вылетом, багов.
— Бесконечная загрузка уровня
— Игра не сохраняется
— Ошибка сохранений
— Низкий фпс в игре
— Игра тормозит, зависает, лагает, выдает ошибку
— Глючит графика
— Глючит звук в игре, не работает.
— Не работает управление в игре.

Если проблема не устраняется значит вам надо скачать новый патч или кряк/таблетку для игры Avorion . Также поможет заново установить игру или скачать новый образ игры(репак)

Инструкция по установке: Дефолтная установка компонентов, извлечь файлы в корень или направить файлы установки в папку с игрой. Стандартная, во время установки укажите папку с Avorion
Небольшое описание самой игры:

Игра Avorion не запускается
Большинство неполадок и проблем при запуске игры происходят в случае неудачно и некорректной их установки. В первую очередь надо проверить не было ли каких либо неполадок или ошибок во время установки игры, попробуйте удалить игру и запустить установщик заново, перед этим предварительно выключить ваш антивирус – очень часто нужные для работы игры файлы удаляются по ошибке(те же кряки, nodvd, таблетки). Второе проверьте чтоб игра установилась в нужную директорию, пути до папки с установленной игрой не должно быть русских букв – используйте для названий папок лишь английские буквы и цифры.
Также проверьте есть ли место на диске для установки. Пробуйте запустить игру от имени Администратора в режиме совместимости с разными версиями Windows, используя правую клавишу мыши на ярлыке игры. (Скачайте патч по ССЫЛКЕ для решения проблемы)

Игра Avorion тормозит. Низкий FPS. Лаги. Фризы. Зависает, Лагает, ошибки, выливает.
Попробуйте установить более новые драйвера для своей видеокарты, благодаря такой процедуре ФПС в игре может увеличится. Посмотрите в диспетчере задач не нагружен ли у вам компьютер на максимум, нажмите CTRL+SHIFT+ESCAPE. Если вы наблюдаете что какая либо программа жрет много памяти или ЦП то вам следует ее отключить.
Также следует в меню игры в разделе графика выключить сглаживание и уменьшить настройки до минимума или средних, отвечающие за пост-обработку. Множество таких функций потребляют значительные ресурсы, а их отключение увеличит производительность игры, не сильно ухудшив качество графики. (Скачайте патч по ССЫЛКЕ для решения проблемы)

Avorion вылетает на рабочий стол
Если игра Avorion постоянно выбрасывает/вылетает на рабочий слот, первом делом уменьшите качество графики. Есть вероятность, что ваш компьютер просто не тянет игру на максимальной производительности и игра не может работать корректно. Установите обновленный патч для игры который вы сможете скачать у нас на сайте ПО ССЫЛКЕ.

Черный экран в Avorion
В большинства случаях эта проблема связана с видеокартой. Проверьте подходит ли ваша видеокарта минимальным требованиям игры Avorion и поставьте новую версию драйверов. Также проблема с черным экраном является следствием плохой производительности CPU(вашего процессора).
Если ПК удовлетворяет всем требованиям – попробуйте переключиться окно игры комбинацией клавиш (ALT+TAB), а потом вернуться к окну игры. Установите обновленный патч для игры который вы сможете скачать у нас на сайте ПО ССЫЛКЕ.

Avorion не устанавливается. Зависла установка
Возможно у вас закончилось место на жестком диске, посмотрите сколько надо места для установки и освободите нужное количество. Также не заполняйте диск до предела, обязательное количество свободного места не должно быть меньше 2 ГБ для работы сколько временных файлов. Иначе как игры, так и программы, могут работать не корректно или вообще откажутся запуститься.
Также проблемы могут быть из-за отсутствия интернет-подключения или плохого соединения. Выключите антивирус во время установки, важный файлы для работы игры могут быть удалены им по ошибки, считая их вирусами. Установите обновленный патч/patch для игры который скачаете на сайте ПО ССЫЛКЕ.

В игре Avorion не работают сохранения
Первом делом не должно в пути до сохранений папок с русским языком. Также должно быть свободное места на HDD – где установлена игра, так и на системном диске. Файлы сохранения Avorion игры находятся в папке документов, которая расположена отдельно от самой игры Путь Диск:Имя пользователя/Documents/. Установите обновленный патч/patch для игры который скачаете на сайте ПО ССЫЛКЕ.

В Avorion не работает управление
В таких случаях может быть подключено одновременного нескольких устройств ввода (клавиатура, геймпад, мышь или джойстик) отключите их и оставьте основные устройства. При использовании геймпад не работает, возможно он не совместим и игрой — официально игры поддерживают только контроллеры, определяющиеся как джойстики Xbox. Если вы используйте другие геймпады или джойстики установите программу эмулирующюю джойстики Xbox (например, x360ce). Установите обновленный патч/patch для игры который скачаете на сайте ПО ССЫЛКЕ.

Не работает или лагает звук в Avorion . Проблемы со звуком
Если глючит звук в игре попробуйте перейти в диспетчер звука и понизить «стандартный формат» например на качество компакт диска. Убедитесь, работает ли звук в других играх и программах. Попробуйте включить звук в самой игре, выберите нужно устройство для проигрывания звука в игре.
Во время игры открыть микшер звука и убедитесь что там включен звук.
Если используете внешнюю звуковую карту – установите последнее драйверов карты на сайте производителя.
Установите обновление для игры Скачать патч/patch для игры ПО ССЫЛКЕ.

Источник

Avorion не запускается, вылетает — решение любых технических и геймплейных проблем.

Глючит или не запускается Avorion? Решение есть! Постоянные лаги и зависания — не проблема! После установки мода Avorion начала глючить или НПС не реагируют на завершение задания? И на этот вопрос найдется ответ! На этой странице вы сможете найти решение для любых известных проблем с игрой и обсудить их на форуме.

Игра не запускается

Тут собраны ответы на самые распространённые ошибки. В случае если вы не нашли ничего подходящего для решения вашей проблемы — рекомендуем перейти на форум, где более детально можно ознакомиться с любой ошибкой встречающийся в Avorion .

Игра вылетает на рабочий стол без ошибок.
О: Скорее всего проблема в поврежденных файлах игры. В подобном случае рекомендуется переустановить игру, предварительно скопировав все сохранения. В случае если игра загружалась из официального магазина за сохранность прогресса можно не переживать.

Avorion не работает на консоли.
О: Обновите ПО до актуальной версии, а так же проверьте стабильность подключения к интернету. Если полное обновление прошивки консоли и самой игры не решило проблему, то стоит заново загрузить игру, предварительно удалив с диска.

Ошибка 0xc000007b.

О: Есть два пути решения.
Первый — полная переустановка игры. В ряде случаев это устраняет проблему.
Второй состоит из двух этапов:

  1. Полная переустановка (если установщик при первом запуске будет предлагать вариант удаления файлов — делаем это, а затем запускаем его заново для чистой установки) компонентов DirectX, Microsoft Visual C++ и Microsoft .NET Framework.
  2. Если не помогло, то потребуется проверка ярлыка игры приложением Dependency Walker (или аналогом). В результате работы приложения у вас будет список всех файлов необходимых для работы игры. Подробнее об этом можно узнать на форуме.

Ошибка 0xc0000142.

О: Чаще всего данная ошибка возникает из-за наличия кириллицы (русских букв) в одном из путей, по которым игра хранит свои файлы. Это может быть имя пользователя или сама папка в которой находится игра. Решением будет установка игры в другую папку, название которой написано английскими буквами или смена имени пользователя.

Ошибка 0xc0000906.

О: Данная ошибка связана с блокировкой одного или нескольких файлов игры антивирусом или “Защитником Windows”. Для её устранения необходимо добавить всю папку игры в исключени. Для каждого антивируса эта процедура индивидуально и следует обратиться к его справочной системе. Стоит отметить, что вы делаете это на свой страх и риск. Все мы любим репаки, но если вас часто мучает данная ошибка — стоит задуматься о покупке игр. Пусть даже и по скидкам, о которых можно узнать из новостей на нашем сайте.

Отсутствует msvcp 140.dll/msvcp 120.dll/msvcp 110.dll/msvcp 100.dll

О: Ошибка возникает в случае отсутствия на компьютере корректной версии пакета Microsoft Visual C++, в который и входит msvcp 140.dll (и подобные ему). Решением будет установка нужной версии пакета.

После загрузки и установки нового пакета ошибка должна пропасть. Если сообщение об отсутствии msvcp 140.dll (120, 110, 100) сохраняется необходимо сделать следующее:

  • Нажимаем на Windows + R;
  • Вводим команду“regsvrЗ2 msvcp140.dll”(без кавычек);
  • Нажимаем “ОК”;
  • Перезагружаем компьютер.

Ошибка 0xc0000009a/0xc0000009b/0xc0000009f и другие
О: Все ошибки начинающиеся с индекса 0xc0000009 (например 0xc0000009a, где на месте “а” может находиться любая буква или цифра) можно отнести к одному семейству. Подобные ошибки являются следствием проблем с оперативной памятью или файлом подкачки.

Перед началом выполнения следующих действий настоятельно рекомендуем отключить часть фоновых процессов и сторонних программ, после чего повторно попробовать запустить Avorion .
Увеличиваем размер файла подкачки:

  • Клик правой кнопкой на значку компьютера, а далее: «Дополнительные параметры системы» — «Дополнительно» — «Быстродействие» — «Дополнительно» — «Виртуальная память» — «Изменить».
  • Выбираем один диск, задаем одинаковый размер.
  • Перезагружаемся.


Размер файла подкачки должен быть кратен 1024. Объём зависит от свободного места на выбранном локальном диске. Рекомендуем установить его равным объему ОЗУ.
Если ошибка 0xc0000009а сохранилась, необходимо проверить вашу оперативную память. Для этого нужно воспользоваться функциями таких программ как MemTest86, Acronis, Everest.

Игра тормозит и лагает

Скорее всего данная проблема носит аппаратный характер. Проверьте системные требования игры и установите корректные настройки качества графики. Подробнее об оптимизации игры можно почитать на форуме. Также загляните в раздел файлов, где найдутся программы для оптимизации Avorion для работы на слабых ПК. Ниже рассмотрены исключительные случаи.

Появились тормоза в игре.
О: Проверьте компьютер на вирусы, отключите лишние фоновые процессы и неиспользуемые программы в диспетчере задач. Также стоит проверить состояние жесткого диска с помощью специализированных программ по типу Hard Drive Inspector. Проверьте температуру процессора и видеокарты —возможно пришла пора обслужить ваш компьютер.

Долгие загрузки в игре.
О: Проверьте состояние своего жесткого диска. Рекомендуется удалить лишние моды — они могут сильно влиять на продолжительность загрузок. Проверьте настройки антивируса и обязательно установите в нём “игровой режим” или его аналог.

Avorion лагает.
О: Причинами периодических тормозов (фризов или лагов) в Avorion могут быть запущенные в фоновом режиме приложения. Особое внимание следует уделить программам вроде Discord и Skype. Если лаги есть и в других играх, то рекомендуем проверить состояние жесткого диска — скорее всего пришла пора заменить его.

Проблемы с модами

Многие модификации требует дополнительных программ для своего запуска или устанавливаются “поверх” других модов. Внимательно изучите инструкцию по установке и в точности выполните все действия. Все необходимые программы можно найти в разделе “файлы” нашего сайта.

Перед запуском любых модификаций в обязательном порядке стоит Microsoft Visual C++ и Microsoft .NET Framework и Java Runtime Environment скачав их с официальных сайтов разработчиков. Обе данных платформы в той или иной степени задействуются для работы по созданию и запуску модификаций, особенно сложных.

Ошибки загрузки/обновления

Проверьте стабильность подключения к интернету, а также скорость загрузки. При слишком высоком пинге или низкой пропускной способности обновление может выдавать ошибки.

Если магазин или лончер Avorion не завершает обновления или выдает ошибки, то переустановите саму программу. При этом все скачанные вами игры сохранятся.

Запустите проверку целостности данных игры.

Проверьте наличие свободного места на том диске, на котором установлена игра, а также на диске с операционной системой. И в том и в другом случае должно быть свободно места не меньше, чем занимает игра на текущий момент. В идеале всегда иметь запас около 100Гб.

Проверьте настройки антивируса и “Защитника Windows”, а также разрешения в брандмауэре. Вполне возможно они ограничивают подключение к интернету для ряда приложений. Данную проблему можно решить и полной переустановкой магазина или лончера т.к. большинство из них попросит предоставить доступ к интернету в процессе инсталляции.

О специфических ошибках связанных с последними обновлениями можно узнать на форуме игры.

Вопросы по прохождению

Ответы на все вопросы касающиеся прохождения Avorion можно найти в соответствующих разделах Wiki, а также на нашем форуме. Не стесняйтесь задавать вопросы и делиться своими советами и решениями.

Источник

This guide will help you on how to fix the OpenGL crash before start Avorion.

Avorion Requirements

Minimum:

  • ■ OS: Windows 7 or higher
  • ■ Processor: Dual Core CPU
  • ■ Memory: 4 GB RAM
  • ■ Graphics: A graphics device that supports OpenGL 3.0 or higher.
  • ■ Network: Broadband Internet connection
  • ■ Storage: 600 MB available space

Recommended:

  • ■ OS: Windows 7 or higher
  • ■ Processor: Quad Core CPU
  • ■ Memory: 6 GB RAM
  • Graphics: A graphics device that supports OpenGL 4.5.
  • ■ Network: Broadband Internet connection
  • ■ Storage: 1 GB available space

If you take this error message:

  • We detected a crash during game startup. Please make sure that you are using the latest drivers for your graphics card. This problem can also be caused by mods. In an attempt to fix this problem, the graphics settings have been reduced to an absolute minimum and your mods have been disabled.

or

  • Error creating shader: File does not exist: “DiXGamesXAvorionXbinXdataXshadersXtext.vert” Your hardware might not meet the minimum requirements for the game. You need a graphics device that supports OpenGL 3.0. If you have such a device, try updating your graphics drivers.

Please follow the steps:

First Step

You can not download OpenGL. OpenGL is not software. Install drivers from your GPU manufacturer – that’s how you get OpenGL. If your GPU doesn’t support OpenGL 4.6 then you need to upgrade your GPU.

This page provides links to both general release drivers that support OpenGL 4.6, and developer beta drivers that support upcoming OpenGL features.

Release Driver Downloads

OpenGL 4.6 support is available for Windows and Linux in our general release drivers available here:

Windows

  • Download for Windows 8 and 7 (64-bit)
  • Download for Windows 10 (64-bit)
  • Download for Windows 10 (64-bit) DCH

Linux

  • Download for Linux 64-bit

Second Step

  • Install the NVIDIA even If you have updated already.
  • And then:
  1. Manage 3D settings
  2. Program Settings
  3. Select a program to customize
  4. Add Avorion.exe
  5. Select High-Performance
  6. OpenGL rendering GPU: GeForce 940MX

It is done!!!

For AMD

Auto-Detect and Install Radeon™ Graphics Drivers for Windows©

For Radeon™ Graphics and Processors with Radeon™ Graphics Only

For use with systems running Microsoft® Windows 7 or 10 AND equipped with AMD Radeon™ discrete desktop graphics, mobile graphics, or AMD processors with Radeon graphics.

Download and run directly onto the system you want to update. An internet connection is required.

If your system is not running Windows© 7 or 10, or for drivers/software for other AMD products such as AMD Radeon™ Pro graphics, embedded graphics, chipsets, etc. please select your product from the menus above.

Still not Work?

Try to run via client.bat

How to Find “client.bat”?

Go to the install folder where Avorion is.


Similar Posts:


Понравилась статья? Поделить с друзьями:
  • Avito ошибка обработки запроса попробуйте чуть позже
  • Avito ошибка обработки данных повторите позже
  • Avito ошибка авторизации пользователя
  • Avl95 ошибки аристон
  • Avidemux ошибка слишком коротко