Hey guys,
I am having trouble with OXPConfig not finding Lave Academy 1.32 and was wondering if anyone had any ideas for a fix.
Sorry if this post isn't in the right place but I'm new here and didn't know where to post it.
Problems With OXPConfig2.2.4
Moderators: winston, another_commander
Re: Problems With OXPConfig2.2.4
1 of these would be a good spot :
Lave academy thread : https://bb.oolite.space/viewtopic.php?f=4&t=5842
Oxpconfig thread : https://bb.oolite.space/viewtopic.php?f=4&t=4908
I'd recommend the first one, and you'll need to supply more info about what's going wrong.
Lave academy thread : https://bb.oolite.space/viewtopic.php?f=4&t=5842
Oxpconfig thread : https://bb.oolite.space/viewtopic.php?f=4&t=4908
I'd recommend the first one, and you'll need to supply more info about what's going wrong.
OS : Arch Linux 64-bit - rolling release
OXPs : My user page
Retired, reachable at [email protected]
OXPs : My user page
Retired, reachable at [email protected]
- Cody
- Sharp Shooter Spam Assassin
- Posts: 16081
- Joined: Sat Jul 04, 2009 9:31 pm
- Location: The Lizard's Claw
- Contact:
Re: Problems With OXPConfig2.2.4
Hi Scoria... and welcome. Just to check - you are using Oolite 1.77, yes?
I would advise stilts for the quagmires, and camels for the snowy hills
And any survivors, their debts I will certainly pay. There's always a way!
And any survivors, their debts I will certainly pay. There's always a way!
- Diziet Sma
- ---- E L I T E ----
- Posts: 6312
- Joined: Mon Apr 06, 2009 12:20 pm
- Location: Aboard the Pitviper S.E. "Blackwidow"
Re: Problems With OXPConfig2.2.4
Confirmed.. Oolite 1.77, Lave Academy 1.32 and OXPConfig 2.2.4.
OXPConfig does not appear to detect Lave Academy at all.
OXPConfig does not appear to detect Lave Academy at all.
Most games have some sort of paddling-pool-and-water-wings beginning to ease you in: Oolite takes the rather more Darwinian approach of heaving you straight into the ocean, often with a brick or two in your pockets for luck. ~ Disembodied
Re: Problems With OXPConfig2.2.4
I'll check my end of it when I get chance, but as that OXP hasn't changed (at least in relation to OXPConfig) in several updates, I would suspect that tweaking OXPConfig for 1.77 may have bent something outta shape.
My OXPs via Boxspace or from my Wiki pages .
Thargoid TV
Dropbox Referral Link
Thargoid TV
Dropbox Referral Link
Re: Problems With OXPConfig2.2.4
Scoria wrote:I am having trouble with OXPConfig not finding Lave Academy 1.32 and was wondering if anyone had any ideas for a fix.
Nope. I guess it happened already a lot earlier, when OXPConfig has switched to the required settings object (with version 2.0, see https://bb.oolite.space/viewtopic.php?f= ... 8&start=20). It probably affects Thargoids other OXPs as well. Let's have a look...Thargoid wrote:I'll check my end of it when I get chance, but as that OXP hasn't changed (at least in relation to OXPConfig) in several updates, I would suspect that tweaking OXPConfig for 1.77 may have bent something outta shape.
Re: Problems With OXPConfig2.2.4
@Thargoid: A quick fix would be to use
Note: The properties
And sorry, Thargoid, for the extra work.
Code: Select all
this.oxpcSettings = {
Info: {Name:this.name,Display:this.name,InfoB:"1 - If false only appear at Lave, nowhere else - ignore extraB.\n2 - Single or multiple academies if extraA set. False gives 1 per galaxy, true gives 5."},
Bool0: {Name:"extraA",Def:true,Desc:"Academies in all galaxies?"},
Bool1: {Name:"extraB",Def:false,Desc:"Multiple academies per galaxy."}
};
this.extraA = true; // Academies in all galaxies? If false only appear at Lave, nowhere else - ignore extraB
this.extraB = false; // Single or multiple academies if extraA set. False gives 1 per galaxy, true gives 5
.extraA
and .extraB
are now in the scripts body instead of .startUp
. This way you don't have to care for the loading order.And sorry, Thargoid, for the extra work.