Acquire the Erlking?

Please post any spoilers for X4: Foundations here.

Moderator: Moderators for English X Forum

Post Reply
silentradios
Posts: 8
Joined: Wed, 13. Oct 21, 06:19
x4

Re: Acquire the Erlking?

Post by silentradios » Sun, 27. Mar 22, 14:43

Genoscythe wrote:
Sun, 27. Mar 22, 13:43
+ $Xml.Load("C:\Users\MYUSER\Documents\Egosoft\X4\NUMBERS\save\autosave_02.xml.gz")
That would be a compressed save :) hence the comment "#unzip .gz file with 7-zip or gunzip first or use uncompressed saves" in the script. I'm going to make a version that deals with compressed saves and more in a bit here.
Edit: just did, see two posts down -- give it a whirl and let me know if it works for someone that isn't me ;)
Last edited by silentradios on Sun, 27. Mar 22, 14:55, edited 1 time in total.

User avatar
mr.WHO
Posts: 8571
Joined: Thu, 12. Oct 06, 17:19
x4

Re: Acquire the Erlking?

Post by mr.WHO » Sun, 27. Mar 22, 14:45

Shit, still got one final blueprint to find out in Avarice IV with coordinates:
x 236'377
y 6'367
z 311'797

But I spammed a grid of advance sattelites in North-East of the sector and can't find anything :(

silentradios
Posts: 8
Joined: Wed, 13. Oct 21, 06:19
x4

Re: Acquire the Erlking?

Post by silentradios » Sun, 27. Mar 22, 14:51

Edit 3/27: Apparently Avarice V and IV were swapped (I got the friendly name mapping from reddit - not sure where a real source is) -- I confirmed in my save and two others did as well
Edit 6/2/23: Thanks jojorne for catching an issue related to the GUI for compressed saves

Here is a bat file that runs the powershell inside it (sneaky.. but effective) : https://anechoic.space/erlkinggui.bat
It has a few features over the previous script including:
  • A File selection dialog
  • Support for gz / compressed saves
  • GUI output of the positions
Here is the same script that you can copy and past and save into a .bat file (use notepad and save as UTF-8 or ANSI (do not select the with BOM ones) and run to avoid the prompts that you get from windows about it being safe or not..

Code: Select all

@findstr/v "^@f.*&" "%~f0"|powershell -noprofile -executionpolicy bypass -&goto:eof
#Fist line stolen from https://stackoverflow.com/a/2611394
#This uses a fair amount of memory - if you have limited ram exit X4 first...
Add-Type -AssemblyName System.Windows.Forms
[System.Windows.Forms.Messagebox]::Show("This uses a fair amount of memory - if you have limited ram exit X4 first...")

#stolen from https://4sysops.com/archives/how-to-create-an-open-file-folder-dialog-box-with-powershell/
$FileBrowser = New-Object System.Windows.Forms.OpenFileDialog -Property @{ 
    InitialDirectory = [Environment]::GetFolderPath('MyDocuments') + "\Egosoft\X4" 
    Filter = 'Save file (*.xml; *.xml.gz)|*.xml;*.xml.gz'
    Title = "Select savegame file"
}
while([string]::IsNullOrWhiteSpace($FileBrowser.FileName)){
    $null = $FileBrowser.ShowDialog()
    sleep 1
}

#from https://social.technet.microsoft.com/Forums/windowsserver/en-US/5aa53fef-5229-4313-a035-8b3a38ab93f5/unzip-gz-files-using-powershell?forum=winserverpowershell
Function Expand-GZip{
    Param(
        $infile,
        $outfile = ($infile -replace '\.gz$','')
        )
    $input = New-Object System.IO.FileStream $inFile, ([IO.FileMode]::Open), ([IO.FileAccess]::Read), ([IO.FileShare]::Read)
    $output = New-Object System.IO.FileStream $outFile, ([IO.FileMode]::Create), ([IO.FileAccess]::Write), ([IO.FileShare]::None)
    $gzipStream = New-Object System.IO.Compression.GzipStream $input, ([IO.Compression.CompressionMode]::Decompress)
    $buffer = New-Object byte[](1024)
    while($true){
        $read = $gzipstream.Read($buffer, 0, 1024)
        if ($read -le 0){break}
        $output.Write($buffer, 0, $read)
        }
    $gzipStream.Close()
    $output.Close()
    $input.Close()
}

$gzip = $false

if($FileBrowser.FileName -match "\.gz$"){
    Write-Host "Extracting compressed save, this may take a while"
    $gzip = $true
    Expand-GZip -infile $FileBrowser.FileName
}

if($gzip) {
    $file = ($FileBrowser.FileName -replace '\.gz$','')
} else {
    $file = $FileBrowser.FileName
}

Write-Host "Loading XML, this may take a while and will use lots of ram"

$Xml=New-Object Xml
#unzip .gz file with 7-zip or gunzip first or use uncompressed saves
$Xml.Load($file)

Write-Host "Finding Erlking Data Vaults"
$components=Select-Xml -Xml $Xml -XPath "/savegame/universe//component"
$erl=$components | ?{$_.Node.macro -and $_.Node.macro.Contains("erlking")}
$vaults = $erl | ?{$_.Node.macro -and $_.Node.macro.Contains("landmarks_erlking_vault")}

#From hatevampire at https://www.reddit.com/r/X4Foundations/comments/thjbik/how_to_read_save_file/
#Not sure where the real source of friendlyname is..

$locationtoname = @{
    cluster_500_sector001_macro="Avarice I"
    cluster_500_sector002_macro="Avarice V"
    cluster_500_sector003_macro="Avarice IV"
    cluster_501_macro="Windfall I"
    cluster_502_macro="Windfall III"
    cluster_503_macro="Windfall IV"
}

$macrotocoords=@{
     "Zone004_Cluster_503_Sector001_macro"="139680,0,-3215.59"
     "Zone003_Cluster_500_Sector003_macro"="-115796.9,0,-96109.38"
     "Zone002_Cluster_503_Sector001_macro"="-2269.199,0,165758.4"
     "Zone006_Cluster_500_Sector002_macro"="-184409.83,0,-3343.0"
     "Zone003_Cluster_501_Sector001_macro"="-97898.44,0,-23632.81"
     "Zone003_Cluster_500_Sector001_macro"="-97898.44,0,-23632.81"
     "Zone005_Cluster_501_Sector001_macro"="-23023.44,0,-160132.8"
     "Zone004_Cluster_504_Sector001_macro"="157616.8,0,-84263.63"
     "tzoneCluster_500_Sector002SHCon9_GateZone_macro"="-39827.2,0,200000"
     "tzoneCluster_500_Sector002SHCon5_GateZone_macro"="-50000,0,200000"
     "Zone001_Cluster_500_Sector003_macro"="-117046.9,0,82593.75"
     "Zone001_Cluster_501_Sector001_macro"="-127062.5,0,133718.8"
     "Zone005_Cluster_504_Sector001_macro"="-23023.44,0,-160132.8"
     "Zone004_Cluster_500_Sector001_macro"="103164.1,0,-32492.19"
     "Zone002_Cluster_500_Sector001_macro"="-10960.94,0,112070.3"
     "Zone003_Cluster_500_Sector002_macro"="-7132.69,0,531.25"
     "Zone002_Cluster_500_Sector002_macro"="-118489.4,0,-131687.5"
     "tzoneCluster_500_Sector003SHCon9_GateZone_macro"="50000,0,200000"
     "Zone005_Cluster_500_Sector002_macro"="98694.83,0,-126406.3"
     "tzoneCluster_500_Sector001SHCon2_GateZone_macro"="66960.9,0,-207957"
     "tzoneCluster_500_Sector003SHCon5_GateZone_macro"="40054.7,0,200000"
     "tzoneCluster_500_Sector001SHCon10_GateZone_macro"="-45738.28,0,-200000"
     "Zone005_Cluster_500_Sector003_macro"="34671.88,0,-152515.6"
     "Zone001_Cluster_504_Sector001_macro"="-127062.5,0,133718.8"
     "Zone003_Cluster_502_Sector001_macro"="-97898.44,0,-23632.81"
     "Zone002_Cluster_504_Sector001_macro"="137904.1,0,135199.3"
     "Zone005_Cluster_503_Sector001_macro"="-23023.44,0,-160132.8"
     "Zone001_Cluster_500_Sector001_macro"="-127062.5,0,133718.8"
     "Zone004_Cluster_501_Sector001_macro"="103164.1,0,-32492.19"
     "tzoneCluster_500_Sector001SHCon4_GateZone_macro"="76886.7,0,-207957"
     "Zone006_Cluster_502_Sector001_macro"="47000.0,0,172000.0"
     "Zone002_Cluster_500_Sector003_macro"="44015.63,0,158125"
     "tzoneCluster_500_Sector001SHCon6_GateZone_macro"="-55785.2,0,-200000"
     "Zone002_Cluster_501_Sector001_macro"="-10960.94,0,112070.3"
     "Zone001_Cluster_500_Sector002_macro"="-78593.63,0,157937.5"
     "Zone003_Cluster_503_Sector001_macro"="-199365.3,0,-55454.45"
     "Zone001_Cluster_502_Sector001_macro"="-127062.5,0,133718.8"
     "Zone003_Cluster_504_Sector001_macro"="-226443.3,0,-97194.67"
     "Zone005_Cluster_500_Sector001_macro"="-23023.44,0,-160132.8"
     "Zone004_Cluster_500_Sector003_macro"="110359.4,0,7250"
     "Zone001_Cluster_503_Sector001_macro"="-190039.3,0,180073.9"
     "Zone005_Cluster_502_Sector001_macro"="-23023.44,0,-160132.8"
     "Zone004_Cluster_500_Sector002_macro"="101721.7,0,100656.3"
     "Zone002_Cluster_502_Sector001_macro"="108009.3,0,115933.7"
     "Zone004_Cluster_502_Sector001_macro"="103164.1,0,-32492.19"
}

#Get offsets up the tree
function Recurse-Offsets($node){
    if($node.class -and $node.class -eq "galaxy"){
        return @()
    }
    if($node.offset -ne $null){
        if($node.offset.position){
            $x=$node.offset.position.x
            $y=$node.offset.position.y
            $z=$node.offset.position.z
        } else {
            $x,$y,$z=0,0,0
        }
        if($node.offset.rotation){
            if($node.offset.rotation.yaw){$yaw=$node.offset.rotation.yaw} else {$yaw=0}
            if($node.offset.rotation.pitch){$pitch=$node.offset.rotation.pitch} else {$pitch=0}
            if($node.offset.rotation.roll){$roll=$node.offset.rotation.roll} else {$roll=0}
        } else {
            $pitch,$roll,$yaw=0,0,0
        }
        if($macrotocoords[$node.macro]){
            $x,$y,$z=$macrotocoords[$node.macro].Split(",")
        }
        $obj = [pscustomobject]@{
            x=$x
            y=$y
            z=$z
            pitch=$pitch
            roll=$roll
            yaw=$yaw
            code=$node.code
            macro=$node.macro
            class=$node.class
        }
        return @($obj) + (Recurse-Offsets -node $node.ParentNode)
    } else {
        return Recurse-Offsets -node $node.ParentNode
    }
}

$data=. {
    foreach($vault in $vaults){
        $data=Recurse-Offsets $vault.Node
        $sums = $data | Measure-Object -Sum -Property x,y,z
        $location = $data |?{$_.class -eq "sector"} | select -ExpandProperty macro
        if([string]::IsNullOrWhiteSpace($location)){
            $location = $data |?{$_.class -eq "cluster"} | select -ExpandProperty macro
        }
        [pscustomobject]@{
            location=$locationtoname[$location]
            Xkm=($sums |?{$_.property -eq "x"}).sum/1000
            Ykm=($sums |?{$_.property -eq "y"}).sum/1000
            Zkm=($sums |?{$_.property -eq "z"}).sum/1000
            blueprint=$vault.Node.connections.connection.component.blueprints |?{$_ -ne $null}
            vault=$vault.Node.macro
            code=$vault.Node.code
        }
    }
} 
$data | ft -AutoSize
$data | Out-GridView
if($gzip){
    if([System.Windows.Forms.MessageBox]::Show("Remove the extracted save $file" , "Remove Save?" , 4, 64) -eq "Yes"){
        Remove-Item -Path $file
    }
}

[System.Windows.Forms.Messagebox]::Show("Done, you can copy out of the cmd window or grid view before closing this if you want.")

<#
#Some other useful snippets

#detailed output
. {
    foreach($vault in $vaults){
        Recurse-Offsets $vault.Node
        "-----"
    }
} | ft -AutoSize

#parse out zone info
$zoneinfo = [xml](gc c:\path\to\dlc_pirate_sectors.xml)
$hash = @{}
$zoneinfo.macros.macro | %{
    $_.connections.connection | %{
        $hash += @{$_.macro.ref = $_.offset.position } 
    }
}
# Generate a powershell hash for the above xml and put it on the clipboard
"@{`n" + ($hash.GetEnumerator() |%{"    `"$($_.key)`"=`"$(@($_.value.x,$_.value.y,$_.value.z) -join ",")`"`n"}) + "}" | clip
$components=Select-Xml -Xml $Xml -XPath "/savegame/universe//component"
# Get all classes
$components.Node.class | select -Unique | sort

order of map related:
    galaxy
    cluster
    sector
    zone
#>
Last edited by silentradios on Sat, 3. Jun 23, 05:16, edited 3 times in total.

Genoscythe
Posts: 175
Joined: Fri, 27. Jan 17, 13:19
x4

Re: Acquire the Erlking?

Post by Genoscythe » Sun, 27. Mar 22, 15:18

silentradios wrote:
Sun, 27. Mar 22, 14:43
Genoscythe wrote:
Sun, 27. Mar 22, 13:43
+ $Xml.Load("C:\Users\MYUSER\Documents\Egosoft\X4\NUMBERS\save\autosave_02.xml.gz")
That would be a compressed save :) hence the comment "#unzip .gz file with 7-zip or gunzip first or use uncompressed saves" in the script. I'm going to make a version that deals with compressed saves and more in a bit here.
Edit: just did, see two posts down -- give it a whirl and let me know if it works for someone that isn't me ;)
Thank you so much, seems to work just fine. now here are my findings:
Spoiler
Show
Avarice I -41.50094 0.411687 114.338425 landmarks_erlking_vault_03_macro CRO-532
Avarice I -14.863245 2.050524 142.23512 landmarks_erlking_vault_01_macro RZO-942
Avarice V -110.893177 -0.237999 -122.240589 shield_pir_xl_battleship_01_standard_01_mk1 landmarks_erlking_vault_02_macro LWL-406
Avarice V -201.535812 11.280293 337.57925 turret_pir_l_battleship_01_laser_01_mk1 landmarks_erlking_vault_04_macro DMI-448
Windfall III -9.835768 3.133138 -142.84255 landmarks_erlking_vault_05_macro XNA-779
HOWEVER, there are no vaults in Avarice V, instead they were located on these positions in avarice IV? I think the macro you used to map the sectors mixed something up. I have marked beacons as player owned in the save file (RIP unmodified game, will just play on earlier save), see the image.

https://imgur.com/a/7HUyGme

User avatar
mr.WHO
Posts: 8571
Joined: Thu, 12. Oct 06, 17:19
x4

Re: Acquire the Erlking?

Post by mr.WHO » Sun, 27. Mar 22, 16:16

Genoscythe wrote:
Sun, 27. Mar 22, 15:18
HOWEVER, there are no vaults in Avarice V, instead they were located on these positions in avarice IV? I think the macro you used to map the sectors mixed something up. I have marked beacons as player owned in the save file (RIP unmodified game, will just play on earlier save), see the image.

https://imgur.com/a/7HUyGme
OMG, THANK YOU!

I've been satelite griding the Avarice V, like an idiot for last 2 hours, while in fact my last remaining vault was in Avarice IV.

silentradios
Posts: 8
Joined: Wed, 13. Oct 21, 06:19
x4

Re: Acquire the Erlking?

Post by silentradios » Sun, 27. Mar 22, 23:56

mr.WHO wrote:
Sun, 27. Mar 22, 16:16
Genoscythe wrote:
Sun, 27. Mar 22, 15:18
HOWEVER, there are no vaults in Avarice V, instead they were located on these positions in avarice IV? I think the macro you used to map the sectors mixed something up. I have marked beacons as player owned in the save file (RIP unmodified game, will just play on earlier save), see the image.

https://imgur.com/a/7HUyGme
OMG, THANK YOU!

I've been satelite griding the Avarice V, like an idiot for last 2 hours, while in fact my last remaining vault was in Avarice IV.
Hrm, I hadn't actually gone after the vault in V/IV in my save because it was just the engine blueprint -- just did and you all are right (and reddit was wrong lol). It wasn't the macros just the friendly name mapping but anyway I've updated both the original and the new script to reflect the correct mapping. I'd like to know the real source for sector id to friendly name mapping...

Meseker
Posts: 2
Joined: Tue, 29. Mar 22, 15:06

Re: Acquire the Erlking?

Post by Meseker » Wed, 30. Mar 22, 22:31

My savegame is from 5.0 and have all new sectors revealed, but the macro finds only 3 vaults in my save, is it borked? :(

dreamer2008
Posts: 287
Joined: Sat, 24. Dec 11, 11:14
x4

Re: Acquire the Erlking?

Post by dreamer2008 » Thu, 31. Mar 22, 08:08

How do I install the blueprints once I got them? I can't see them at any shipyard.

Imperial Good
Moderator (English)
Moderator (English)
Posts: 4760
Joined: Fri, 21. Dec 18, 18:23
x4

Re: Acquire the Erlking?

Post by Imperial Good » Thu, 31. Mar 22, 08:12

This should be improved in 5.10 hopefully with the vaults pinging with long range scans I think.
dreamer2008 wrote:
Thu, 31. Mar 22, 08:08
How do I install the blueprints once I got them? I can't see them at any shipyard.
Once you have the blueprints you take the Erlking to either a XL Ship Building module or XL Maintenance module at a station you own. The blueprint for these modules cannot be hacked and must be purchased from a faction representative at a high cost.

dreamer2008
Posts: 287
Joined: Sat, 24. Dec 11, 11:14
x4

Re: Acquire the Erlking?

Post by dreamer2008 » Thu, 31. Mar 22, 08:29

Imperial Good wrote:
Thu, 31. Mar 22, 08:12
This should be improved in 5.10 hopefully with the vaults pinging with long range scans I think.
dreamer2008 wrote:
Thu, 31. Mar 22, 08:08
How do I install the blueprints once I got them? I can't see them at any shipyard.
Once you have the blueprints you take the Erlking to either a XL Ship Building module or XL Maintenance module at a station you own. The blueprint for these modules cannot be hacked and must be purchased from a faction representative at a high cost.
Ah, so I need my own Building Module. Okay, thank you. And that ping update would be immensely helpful to easier find the data vaults, its very hard right now.

Fantome_29
Posts: 49
Joined: Mon, 2. Nov 20, 14:18
x4

Re: Acquire the Erlking?

Post by Fantome_29 » Thu, 31. Mar 22, 13:18

So far i found 4 among the 5 bp needed. Using the .bat i got for the last missing :

Avarice IV x=-183,46 y=41,49 z=-75,00 turret_pir_m_battleship_01_gatling_02_mk1 landmarks_erlking_vault_05_macro INN-693

So I went in Avarice IV, first searched by ship pattern : nothing found, then i spammed adevanced Sat to cover all the sector : https://zupimages.net/viewer.php?id=22/13/ozgv.png Still nothing


I see X and Z not being to hight so i guess it must be because Y=41 : @Egosoft HOW I'm SUPPOSED TO FIND THAT THING ??? :doh: :evil:

PS : Anyone, Which part of sector is [x<0 and z<0] : south west ?


EDIT : I found a way to finally reach that hidden vault :

First thing was to found one building coordinate in Avarice 4, I used Roguey map : https://www.zupimages.net/up/22/13/duqw.png
So now i do know one point in avarice, and i know where to go as i said above : (-184,41.5,-75). Coordinate of gate is (-153,0,65) so I've to do from the gate 31km toward -X / 41.5km toward +Y / 140km toward -Z. Axis -X/+X and -Z/+Z are on radar so I used it in that way :
  • At that point if im not wrong I'm at coordinate (-184,0,-75) allready covered by one advanced satellite and that bloody hidden vault must be 41.5 km just above. So move ~90° toward up (no Y axis on radar) and begin speed up : TADA very quickly i got the vault : https://www.zupimages.net/viewer.php?id=22/13/3iwn.png
@Egosoft : :rant: :rant: :rant:

Candergart
Posts: 30
Joined: Tue, 1. Dec 20, 08:30
x4

Re: Acquire the Erlking?

Post by Candergart » Sun, 3. Apr 22, 05:32

Comical that some have to resort to "cheating" (Reading the data from the save file) to be able to complete these tasks to get all 5 blueprints.
Is this an oversight by the devs or are we missing something?

I mean, These vaults are not scannable by the long range scanners and so far I have not found any method of finding them through missions.

That being said, I just found all of them within 30 minutes of searching without cheating and without using SETA.
I followed the advice of some other member here in the forums and got 20 Pegasus Sentinels, told them to explore system by system, spreading them out and then set the map filter to Data Vault and watched.


I found 3 vaults in Windfall III, 1 in Avarice IV and one in Avarice I.

Note, I put Argon Travel engines on the ships to make them super-fast.

Szines Geza
Posts: 143
Joined: Thu, 29. May 14, 19:53
x4

Re: Acquire the Erlking?

Post by Szines Geza » Sun, 3. Apr 22, 10:44

dreamer2008 wrote:
Thu, 31. Mar 22, 08:08
How do I install the blueprints once I got them? I can't see them at any shipyard.
How did you get the blueprints?
I can see that it needs to be developed, but how do I start that process?

DanKara
Posts: 416
Joined: Fri, 21. Dec 18, 13:19
x4

Re: Acquire the Erlking?

Post by DanKara » Sun, 3. Apr 22, 11:02

Szines Geza wrote:
Sun, 3. Apr 22, 10:44
How did you get the blueprints?
You have to find 5 data vaults within Windfall and Avarice. For me they were all 'easiely' found with in the original bounderies of those sectors (through satelite coverage).
No mission, no guidance, currently not even a 'ping' on the long range scanner (though that seemed a bugged and might be changed in the upcomming patch 5.10).
With the found blueprints you can equip the ship - but only on your own XL-facilities (shipyard, equipement dock).
'Research' is (supposedly) only needed to get a replacement, once your Earlking was destroyed.

Szines Geza
Posts: 143
Joined: Thu, 29. May 14, 19:53
x4

Re: Acquire the Erlking?

Post by Szines Geza » Sun, 3. Apr 22, 15:03

DanKara wrote:
Sun, 3. Apr 22, 11:02
Szines Geza wrote:
Sun, 3. Apr 22, 10:44
How did you get the blueprints?
'Research' is (supposedly) only needed to get a replacement, once your Earlking was destroyed.
Ohhh. So only one piece can exist in the whole universe!?!!
I was hoping to build a fleet of them. :)

Sandtrooper
Posts: 56
Joined: Sun, 2. Apr 06, 02:01

Re: Acquire the Erlking?

Post by Sandtrooper » Sun, 3. Apr 22, 17:33

Curious -
With those afterthought Erlking turret blue prints in data vaults as an example:
How exactly does a hot fix actually update your save file? The save is loaded AFTER the hotfix is installed so, how can omissions such as those two offending data vaults magically appear AFTER loading a saved game? The additional sectors were 'mapped' into fixed locations within the game but yet the data vaults... :rant:

Incidentally, a purple ring or ping sound is NOT how to locate things reliably - good old Egotrauma as per usual. Select your #3 mode for LRS and fire it off as usual but then go to map/personal record (bottom of the list on left side) and look there. If within range, they'll appear there. It's strange how anomalies and data vaults remain as 'unknown contacts' long AFTER learning what they are by discovering, scanning and even opening vaults or travelling through the anomalies. It'd be nice if we could rename the nav beacons and so, indicate an anomaly to where it leads.

Side notes -
Contradiction: Why do we have sound effects in space? It's a vacuum where sound waves cannot be conducted. :gruebel:
DEvolution of technology: Ship speeds are 'metres per second' yet 20th century aircraft (including many turboprops) in Earth's atmosphere travel faster. :!:
Similarly, workbench modifications to reduce 'drag' on SPACE ships travelling in the vacuum of space...?
Accepted: Thrusters can offset inertia to give similar characteristics to atmospheric flight so, that one is excusable. 8)

paiku
Posts: 172
Joined: Fri, 7. Dec 18, 08:06
x4

Re: Acquire the Erlking?

Post by paiku » Sun, 3. Apr 22, 20:34

Found 4/5 myself but could not get the last one. I mean it should atleast not be possible to have more than one in a sector. The fifth i found with the script ( thanks alot ). It was in avarice I, where i allready found another data vault. But like x=250km y=-6km z=-420 km. Pretty brutal to find.

VincentTH
Posts: 6626
Joined: Wed, 6. Nov 02, 20:31
x4

Re: Acquire the Erlking?

Post by VincentTH » Sun, 3. Apr 22, 22:05

oddgit wrote:
Thu, 17. Mar 22, 18:27
Berhg right? Boso, the anti war guy was like, yeah, go steal that, by force. haha

I was hoping for some sort of storyline related to it.
The Boron was called a criminal, what makes you think he is an anti-war guy :-)

Thomasbirn
Posts: 68
Joined: Sat, 22. Dec 18, 21:42
x4

Re: Acquire the Erlking?

Post by Thomasbirn » Tue, 5. Apr 22, 14:55

Sandtrooper wrote:
Sun, 3. Apr 22, 17:33
Curious -
With those afterthought Erlking turret blue prints in data vaults as an example:
How exactly does a hot fix actually update your save file? The save is loaded AFTER the hotfix is installed so, how can omissions such as those two offending data vaults magically appear AFTER loading a saved game? The additional sectors were 'mapped' into fixed locations within the game but yet the data vaults... :rant:

Incidentally, a purple ring or ping sound is NOT how to locate things reliably - good old Egotrauma as per usual. Select your #3 mode for LRS and fire it off as usual but then go to map/personal record (bottom of the list on left side) and look there. If within range, they'll appear there. It's strange how anomalies and data vaults remain as 'unknown contacts' long AFTER learning what they are by discovering, scanning and even opening vaults or travelling through the anomalies. It'd be nice if we could rename the nav beacons and so, indicate an anomaly to where it leads.

Side notes -
Contradiction: Why do we have sound effects in space? It's a vacuum where sound waves cannot be conducted. :gruebel:
DEvolution of technology: Ship speeds are 'metres per second' yet 20th century aircraft (including many turboprops) in Earth's atmosphere travel faster. :!:
Similarly, workbench modifications to reduce 'drag' on SPACE ships travelling in the vacuum of space...?
Accepted: Thrusters can offset inertia to give similar characteristics to atmospheric flight so, that one is excusable. 8)
Hello if you want so much realism, why do you play a Sifi game?

Rei Ayanami
Posts: 3333
Joined: Wed, 6. Nov 02, 20:31
x4

Re: Acquire the Erlking?

Post by Rei Ayanami » Tue, 5. Apr 22, 17:47

Sandtrooper wrote:
Sun, 3. Apr 22, 17:33
It'd be nice if we could rename the nav beacons and so, indicate an anomaly to where it leads.
You can't rightclick on them to rename.
However, you can left click on them, open the info menu (the "i" icon left or right on the map) and there you have a text field "Name" to rename them. Enjoy! :)
Why do we have sound effects in space? It's a vacuum where sound waves cannot be conducted.
Because the game is primarily about having fun, not everyone would enjoy silence, even if it was more realistic. I could ask back : Why do we have music in any game? Is there always someone with a radio right behind us, playing music and changing the radio channels in order to match our current situation and location? I'm just kidding, of course. :)

Post Reply

Return to “X4: Foundations - Spoilers”