Page 15 of 15
Re: [WIP] Life in the Frontier OXP
Posted: Mon Jul 24, 2023 4:09 am
by phkb
Small bug fix:
In "LifeInTheFrontier.js" file, in the "this.$loadOXPFlags" function, the following code is incorrect:
Code: Select all
if (vartype = "S") {
this.LITF_flags[varname] = OXPFlagsItem[1];
} else if (vartype = "N") {
this.LITF_flags[varname] = parseInt(OXPFlagsItem[1]);
}
It should be
Code: Select all
if (vartype == "S") {
this.LITF_flags[varname] = OXPFlagsItem[1];
} else if (vartype == "N") {
this.LITF_flags[varname] = parseInt(OXPFlagsItem[1]);
}
Re: [WIP] Life in the Frontier OXP
Posted: Wed Nov 22, 2023 11:26 am
by Cholmondely
Pirate Coves
These could well constitute an adventure in themselves.
Possibilities include:
- exorbitant docking fees
- attempts at hostile boarding by residents on docking - and the need to fight them off!
- one's ship being broken into if one disembarks
- stowaways (fugitives, refugee members of other gangs,
etc.)
- being prevented from returning to one's ship
- difficulties buying fuel/equipment, accessing commodities markets... (and thus a need to bribe/threaten
etc)
- being attacked by relatives/friends of a pirate ship crew that one has recently annihilated - or having ship equipment disabled by them (fuel injectors, lasers or missiles damaged) - this could also introduce new security equipment for sale - Choob's Bolts?

Re: [WIP] Life in the Frontier OXP
Posted: Sat Jun 07, 2025 7:38 pm
by Krager
Можете как то подредактировать? Пишет пространство имён загрязнено.
22:36:02.810 [WARNING]: Предупреждение! Глобальное пространство имен, загрязненное:
22:36:02.810 [WARNING]: ["LITF_placeLabel","LITF_reLabel"]
Re: [WIP] Life in the Frontier OXP
Posted: Sun Jun 08, 2025 12:14 am
by Cholmondely
Krager wrote: ↑Sat Jun 07, 2025 7:38 pm
Можете как то подредактировать? Пишет пространство имён загрязнено.
22:36:02.810 [WARNING]: Предупреждение! Глобальное пространство имен, загрязненное:
22:36:02.810 [WARNING]: ["LITF_placeLabel","LITF_reLabel"]
Mighty Krager, this OXP is
unfinished. There
are several attempts to finish it - but every single one of them is unfinished too! Have a look at the 4 versions
downloadable from the wiki page and decide what makes sense for you....
Just be aware: "Massively Locked" has disappeared, "Beetle Bethlehem" came back but has since disappeared, and his august excellency, Phkb, might also be about to disappear for a bit!
Re: [WIP] Life in the Frontier OXP
Posted: Sun Jun 08, 2025 11:59 am
by Krager
У меня версия 0.73 написано авторы "BeeTLe BeTHLeHeM, Norby" уже перевёл её на русский язык. Не хотелось бы переводить её же снова, текста много. В крайнем случае буду использовать так как есть. Ну или может если не сильно заморочено может кто нибудь посмотрит, кто в коде разбирается, какие правки внести можно...
https://cloud.mail.ru/public/qvEn/BEWg1 ... v0.7.3.oxz
Была похожая ошибка в другом приложении "Additional Cargo Space Adjustments". Phkb подсказал какую строчку чем заменить и всё стало хорошо)
Re: [WIP] Life in the Frontier OXP
Posted: Sun Jun 15, 2025 11:02 am
by Krager
Слишком много текста, занимался почти неделю, оставлю всё как есть. Возможно кто нибудь возьмётся доработать и избавить от ошибок.
Версия 0.7.3. Вроде работает стабильно, есть карта уровня. Выдаёт ошибку загрязнения имён в логах.
Code: Select all
13:51:03.087 [WARNING]: Предупреждение! Глобальное пространство имен, загрязненное:
13:51:03.087 [WARNING]: ["LITF_placeLabel","LITF_reLabel"]
https://cloud.mail.ru/public/qvEn/BEWg1 ... v0.7.3.oxz
Версия 0.08. По видимому более развитая, больше вариантов ответов и переходов. Нет карты.
Ошибки, при переходе вываливается в корабль. Возможно ещё что, надо проверять.
https://cloud.mail.ru/public/qvEn/BEWg1 ... 0v0.08.oxz
Re: [WIP] Life in the Frontier OXP
Posted: Sat Jun 21, 2025 7:59 am
by phkb
Krager wrote: ↑Sun Jun 15, 2025 11:02 am
Слишком много текста, занимался почти неделю, оставлю всё как есть. Возможно кто нибудь возьмётся доработать и избавить от ошибок.
Версия 0.7.3. Вроде работает стабильно, есть карта уровня. Выдаёт ошибку загрязнения имён в логах.
Edit the "LITF_Navigation.js" file. On line 11 change this:
to this:
Edit the "LITF_RandomEvents.js" file. On line 11 change this:
to this:
And that should deal with the error reports.
But as Chomondely mentioned, LITF is *seriously* unfinished. There is not much point to doing a translation on it because in the event that a completed version was released, the text will almost certainly be completely different to what it is now. It's probably best to park this one and not distribute it.
Re: [WIP] Life in the Frontier OXP
Posted: Sat Jun 21, 2025 11:48 am
by Krager
phkb wrote: ↑Sat Jun 21, 2025 7:59 am
Krager wrote: ↑Sun Jun 15, 2025 11:02 am
Слишком много текста, занимался почти неделю, оставлю всё как есть. Возможно кто нибудь возьмётся доработать и избавить от ошибок.
Версия 0.7.3. Вроде работает стабильно, есть карта уровня. Выдаёт ошибку загрязнения имён в логах.
Edit the "LITF_Navigation.js" file. On line 11 change this:
to this:
Edit the "LITF_RandomEvents.js" file. On line 11 change this:
to this:
And that should deal with the error reports.
But as Chomondely mentioned, LITF is *seriously* unfinished. There is not much point to doing a translation on it because in the event that a completed version was released, the text will almost certainly be completely different to what it is now. It's probably best to park this one and not distribute it.
Спасибо! Всё хорошо, предупреждение о загрязнении пространства имён больше не появляется.