Code: Select all
key_show_fps = ({
key = "F";
shift = true;
});
Moderators: winston, another_commander
Code: Select all
key_show_fps = ({
key = "F";
shift = true;
});
You 've just discovered a bug. "k" is the key to change field of view in real time in-game, but this feature is not compiled into the executable. Still, the key configuration code sees it as present and that's why you get the conflict warning. Will be fixed.
I think this is just an indicator that you have changed the default key binding for the specific action.Question: what does "overrides" - "yes" mean?
No. Those settings will work if and when you set your keyboard to "US" in Windows. If you switch to "ES" you should configure your keys for ES. Best thing to do is decide what keyboard configuration you want to use when playing the game, select it in the keyboard layout option and configure the keyboard for that layout.Question: if I redefine alphanumerics in game with the (default) US key map, will those definitions carry down through all the other national keyboards in the keyconfig2.plist? (it is a very long file now we're including all of those!)
Here is a diff from my private build (synced with latest nightly) that adds two additional fast activation keys, defaulting to [ and ] but modifiable like the originals, and changes the function of CTRL + fast activation key from priming the equipment to toggling its mode, so you can operate five different pieces of primable equipment simultaneously (four through the fast activation keys, and one through the normal SHIFT-N/CTRL-SHIFT-N cycle with b and n keys).
Just wanted to ask how your "pièce de résistance" is coming along...montana05 wrote: ↑Fri Oct 14, 2022 12:41 pmHere we go:Cholmondely wrote: ↑Fri Oct 14, 2022 12:23 pmGoodness me! Hero! That sounds absolutely super!! Well done!montana05 wrote: ↑Fri Oct 14, 2022 12:18 pmOne of my (lot) WIP's include a small fleet attacking the main planet, admiral orders, drop shuttles and bombardment included before the entire fleet is going down on the planet. The entire scenario is tested and is working.
If you like, I can upload the OXP for you so that you can have a look. Warning ! The package includes various other (harmless) scenarios as well, like a hospital ship sending aid to a planet or the behavior of traders too large to dock.
I'd love to see it! Will you be calling it "Montana's Monumentally Murderous Modifications"?
https://app.box.com/s/35s7upenqndlm53kfoy2kqp9crqay8z8
Please remember it is a WIP so a bit chaotic and not cleaned up and therefore not useful to publish in the current state. BTW the name is simple Lambda Series
Switeck - "sometimes explosively" - is this what actually happens?Switeck wrote: ↑Fri Oct 14, 2022 5:04 pmAn example of an idea I've got knocking around that will be absolutely painful to code...
[Briefing:]
Vice Admiral ____ says:
"Showing the flag" can be very expensive even if Thargoids aren't shooting at us.
Consumable supplies and paid personnel alone is expensive enough, but pales compared to the ships.
While it doesn't typically destroy or significantly damage ships to do this, the time spent is time we can't fight Thargoids elsewhere with these same ships.
The biggest problem is getting all the ships to the destination system at the same time.
Multiple ships have to travel together, with the size of the convoys based on the urgency, danger, and distance from the starting system.
To start the route, the lead ship jumps to a nearby system.
The other ships in the convoy then use the wormhole that creates -- instead of burning their own fuel to jump on their own.
Freighters do this all the time with their non-jump-capable escorts.
After all the ships are through the wormhole, they organize in preparation of making their next jump along the route.
The lead ship is swapped out for another ship that has sufficient fuel and can fight unassisted at least briefly while the rest of the convoy follows through its wormhole to join it.
Then that new lead ship jumps to the next system along the route.
The process continues until the convoy's destination is reached.
This way each jump only consumes the witchspace fuel of 1 ship.
Some extra ships are often included to deal with contingencies, but we are spread much too thin to do this regularly.
Large Navy convoys have crossed entire Galaxy Charts in this manner without ever docking at a station or sun-skimming to refuel.
Only observers near the witchpoint buoys of the systems traveled might see their passage.
Crossing the Great Rift in Galaxy Chart 7 to reach the large cut-off region has for a very long time been an open secret used by large trading corporations, the military, ...and smugglers from what I've heard.
1 ship misjumps halfway between 2 systems at the edge of the Great Rift.
Other ships in the convoy are then able to jump from that interstellar point to a system across the Great Rift.
The bugs seem to have caught on that we're doing this regularly, because we sometimes have to fight a sizable Thargoid warship force at these interstellar locations...and ships have been lost or damaged in these fights, though fortunately not entire military convoys so far.
We'd like to be able to quickly send a smaller force that is less likely attract attention of both the bugs and various system factions that seem out to cause chaos while we're not around.
Ideally, just 1 ship...but until now that was deemed too risky even for our fast Asps.
An independent explorer, initially without funds from us, discovered additional paths across the Great Rift.
The best such paths offer savings for our logistics.
The yearly expeditions to "unreachable" systems using multiple Galactic Hyperdrives has a very high cost -- often via a Behemoth due to its cargo capacity and ability to act as a ship carrier. We cannot afford to send a Behemoth alone, so it may have a small fleet with it.
A partial payoff comes from deliveries of Galactic Hyperdrives at far above normal market prices and transportation of stranded people to the next Galaxy Chart region for a fee.
We even buy up some ships for cheap that we later refurbish and resell.
Oresrati in Galaxy Chart 8 is the worst regular Navy expedition destination due to it lacking even a single nearby trading system.
But that has changed, thanks initially to a rumor that a specially reprogrammed Gal. Hyperdrive is no longer needed to reach it.
A Galactic Navy special operation confirmed It is reachable via a misjump route from nearby systems.
Once there a Gal. Hyperdrive is still needed to LEAVE it.
[END BRIEFING]
...Now, the reason why that's going to be painful to code is the forming-up process after each jump.
Ships can get separated, some even destroyed...have to be extras to handle such contingencies as well as "leave no one behind".
It's slightly easier if the ships are in 1 single-array group, so each can be selected with $ship_group[ship_number] instead of having to fiddle with search-for-nearest ship looping and trying to determine if each ship so found is even part of the loose group.
There's also the problem when more than about 5 ships dog-pile a single wormhole they come out on top of each other on the other side, sometimes comically...sometimes explosively.