Добавил картинку в SW_Economy как f6-overlay-sw-economy_16_9_default. Тоже всё хорошо.
Благодарю!
Moderators: another_commander, winston
Сделайте пожалуйста то же самое только под XenonReduxUIResources_4x3 v2.0

There is nothing to translate or adjust in the Redux resource pack. The only thing to translate would be some Library Config settings in the main Xenon UI Redux pack, but there is no English text applied to anything in the Redux resources.

Why would you need to move any of various effects into Xenon UI? If you have the Library, BGS and Xenon UI mod packs installed, you can select Xenon UI as your preferred GUI (go into Library Config, find the "GUI-Config" item, select "Show Flags", and change the "Xenon UI" item to "1"). That way, you can have all the bells and whistles that BGS supplies, with the Xenon UI screens on display.
В этом случае надо дорабатывать `Docked_HUDs` чтобы можно было левый список подсказок отключать)phkb wrote: ↑Mon Nov 10, 2025 12:06 amWhy would you need to move any of various effects into Xenon UI? If you have the Library, BGS and Xenon UI mod packs installed, you can select Xenon UI as your preferred GUI (go into Library Config, find the "GUI-Config" item, select "Show Flags", and change the "Xenon UI" item to "1"). That way, you can have all the bells and whistles that BGS supplies, with the Xenon UI screens on display.

Well, I'm trying *not* to make changes to "Docked HUD's", as that's Wildeblood's mod, and he's quite capable of making any changes that might be necessary.Krager wrote: ↑Mon Nov 10, 2025 6:01 amВ этом случае надо дорабатывать `Docked_HUDs` чтобы можно было левый список подсказок отключать)
У меня сейчас два комплекта оформления:
1. RUS_BGS v2.5.4 mod.oxz (картинку F7 изменил в PhotoShop) и RUS_Docked_HUDs v1.3.1 mod (координаты левого текста сдвигал).
2. RUS_XenonUI v3.8.oxz, RUS_XenonUIResourcesG_Russian v1.2.oxz RUS_Docked_HUDs v1.1.
Code: Select all
this.$xenonUIInUse = function() {
if (worldScripts.XenonUI) {
var lib = worldScripts.Lib_GUI;
if (lib) {
if (lib.$cur === "XenonUI") return true;
} else {
return true;
}
}
return false;
}
Thanks for the checkeroo function, I would have needed to ask you for it if I were intending to return to Docked HUDs. But...phkb wrote: ↑Mon Nov 10, 2025 6:34 amI'm trying *not* to make changes to "Docked HUD's", as that's Wildeblood's mod, and he's quite capable of making any changes that might be necessary.
Rather than for Xenon UI to do something to Docked HUDs, I think the better approach would be for Docked HUD v1.3.1 to check for Xenon UI being installed and (when Library Config is in use) active, and in that situation not put any updates to the HUD. If Wildeblood is happy to make the changes, this is the code he'll need to check for Xenon UI:Code: Select all
this.$xenonUIInUse = function() { if (worldScripts.XenonUI) { var lib = worldScripts.Lib_GUI; if (lib) { if (lib.$cur === "XenonUI") return true; } else { return true; } } return false; }
this.startUp functions to be a call to this.$xenonUIInUse (or replication of the code directly), and if XenonUI is in use, for the scripts to delete themselves. I believe there's an OXP called Untrumbled which might be an example to follow.Я вас понял, оставил версию `Docked_HUDs v1.1` она меня вполне устраивает.
Подскажите пожалуйста что надо изменить в `XenonUI v3.8` или в `BGS v2.5.4` чтобы при запуске игры по умолчанию приоритетной графикой стала графика из `XenonUI v3.8`?

You can try changing line 18 of "xenonui.js" from this:Krager wrote: ↑Sat Jan 03, 2026 10:28 pmПодскажите пожалуйста что надо изменить в `XenonUI v3.8` или в `BGS v2.5.4` чтобы при запуске игры по умолчанию приоритетной графикой стала графика из `XenonUI v3.8`?
Сейчас приходится переходить в настроики дополнений и менять флаг во вкладке `GUI Config` библиотеки `Svengali_Library v1.8.5`. Нужно чтоб по умолчанию этот флаг уже стоял на XenonUI.
Code: Select all
this._enableLibGUIInt = true; // flag to indicate whether integration with LibGUI is on or off. true means it is on.
Code: Select all
this._enableLibGUIInt = false; // flag to indicate whether integration with LibGUI is on or off. true means it is on.
Это не то, не работает. Этот ключ отключает возможность управления из библиотеки `Svengali_Library v1.8.5`. Пропала из меню возможность переключить графику. Тут наверно надо в самой библиотеке `Svengali_Library v1.8.5` что то менять. Чтоб приоритет был у `Xenon UI`phkb wrote: ↑Sun Jan 04, 2026 2:43 amCode: Select all
this._enableLibGUIInt = true; // flag to indicate whether integration with LibGUI is on or off. true means it is on.

Correct. But it's the fast way to prioritise Xenon UI without monkey-patching Library, which I'm trying not to do.Krager wrote: ↑Sun Jan 04, 2026 12:27 pmЭто не то, не работает. Этот ключ отключает возможность управления из библиотеки `Svengali_Library v1.8.5`. Пропала из меню возможность переключить графику. Тут наверно надо в самой библиотеке `Svengali_Library v1.8.5` что то менять. Чтоб приоритет был у `Xenon UI`