EDSM - Elite Dangerous Star Map
The Galactic Positioning System of Elite: Dangerous at your service.
www.edsm.net
Nothing new. They just tell us we are done here
Well the generation ship is in Alaunus 27kls until I'm there
Tweet said:The location can be revealed by the Listening Post in orbit of LHS 1047 2 in the Alaunus system.
This is happening. Was only 60 LY away so took a look...So what is it? LHS 1047 or Alaunus?
EDSM - Elite Dangerous Star Map
The Galactic Positioning System of Elite: Dangerous at your service.www.edsm.net
Nothing new. They just tell us we are done here
Possibly, but I can't see anything that it was an actual Thargoid - there's certainly nothing 'giant insect'-esque in the descriptions. Personally I'd expect that to come out from the descriptions if it was.I had the same thoughts after listening to all of the logs in-game.
If it was a Faraday Cage then I would have expected the head scientist to call it such by name. The lower-case and single word "cage" being used twice in the logs to me indicates and actual cage to contain a living thing.
That it was breaking down materials also indicates to me it was covered in or exuding the Thargoid corrosive green goo.
To me, I think they recovered a hurt or dying Thargoid pilot.
Fuel is obvious. Why would you leave the bubble without enough fuel to return? The GalNet article in Chukchan says it was just enough to reach the LP. Especially true, if you need some kind of special, refined material as fuel.Why take more fuel and the mercenaries without knowing their future secret mission?
With FDrv posting about Gen ships, has anyone looked into the mysterious alien signal that drove one ship mad?
"Generation Ship Thetis was discovered by CMDR Rhaider on April 28, 3303. It is located in Nefertem, orbiting the planet Nefertem 6 A.
Shortly into the Thetis's ninth generation, passengers began reporting whispering sounds coming from comms units. The sounds, a digital signal being picked up by the ship's comms array, drove passengers homicidally insane, resulting in the loss of whole decks. The signal was found to have originated from an uninhabited planet that the Thetis had passed 15 lightyears earlier."
#!/usr/bin/python3
import string
import itertools
import math
import time
def reverse(s): return s[::-1]
def rotate(s): return s[1:] + s[0]
CIPHERTEXT="8BFGTY4PLU67-RTYO06.45:GN63-74PHGJI E67-:F563-21-574.9 ER34.6-DER8+WEST U.5 -RTG10 RTH8-4 6T.WR4564-21 +G134.2 RT55.4 GDW THE42.1LY 764.2Y- 45TG4.BTJ-Y.6ORT437.1D341-67.Y5DS 243 45TY-3234"
CHARSET = string.ascii_uppercase + "0123456789" + " +-.:"
SENTINELS=[ "MUSCA", "CHUKCHAN", "COALSACK", "ADAMASTOR", "THARGOID", "AZIMUTH", "CARVER" ]
def testmap(mapping):
plain = CIPHERTEXT.translate( str.maketrans(CHARSET, mapping) )
#print( "%2d: %s\n" % (i, plain), end='')
for txt in SENTINELS:
if txt in plain:
print("\n\n\nFOUND!\n\n\n\n")
print(mapping)
exit(0)
def permset(charset_bits):
# permute every part of charset_bits
global COUNT
for perm in itertools.permutations(charset_bits):
mapping = ''.join(perm)
if COUNT % PRINT_EVERY == 0:
print("%9d %s" % (COUNT, mapping) )
testmap(mapping)
COUNT += 1
def rotate_reverse_bit( head, tail):
#print(">>>" + str(head) + str(tail))
if tail:
tail = tail[:] # copy
bit = tail.pop(0)
if len(bit) > 2:
for i in range(len(bit)):
rotate_reverse_bit(head + [bit], tail)
rotate_reverse_bit(head + [reverse(bit)], tail)
bit = rotate(bit)
elif len(bit) == 2:
rotate_reverse_bit(head + [bit], tail)
rotate_reverse_bit(head + [reverse(bit)], tail)
else:
rotate_reverse_bit(head + [bit], tail)
else: # end of recursion; do it
#print(head)
permset(head)
return
def count_perms(bits):
bcount = math.factorial(len(bits)) # base number of permutations
for bit in bits:
if len(bit) > 2:
bcount *= len(bit) # rotations
if len(bit) > 1:
bcount *= 2 # reversal
return bcount
PRINT_EVERY = 10000
COUNT = 0
BITS = ["ABCDEFGHIJKLM", "NOPQRSTUVWXYZ", "0123456789"] + list(" +-.:")
print( "Permutations = " + str(count_perms(BITS)))
time.sleep(4)
rotate_reverse_bit( [], BITS )
print( "COUNT = " + str(COUNT))
I hope FD are taking note that people are resorting to writing their own little programs to help. That is dedication. Well done.I tested the LP ciphertext against any simple rotation/reverse style subtitution (e.g. rot13) without success.
Here's my python program in case anyone wants to take it further.
Iterating over every permutation of A-Z0-9 isn't feasible.
[EDIT: I updated it with some more fine-grained reversing of the character set]
[EDIT: bug fix]
Python:#!/usr/bin/python3 import string import itertools def reverse(s): return s[::-1] def rotate(s): return s[1:] + s[0] CIPHERTEXT="8BFGTY4PLU67-RTYO06.45:GN63-74PHGJI E67-:F563-21-574.9 ER34.6-DER8+WEST U.5 -RTG10 RTH8-4 6T.WR4564-21 +G134.2 RT55.4 GDW THE42.1LY 764.2Y- 45TG4.BTJ-Y.6ORT437.1D341-67.Y5DS 243 45TY-3234" CHARSET = string.ascii_uppercase + "0123456789" + " +-.:" SENTINELS=[ "MUSCA", "CHUKCHAN", "COALSACK", "ADAMASTOR", "THARGOID", "AZIMUTH", "CARVER" ] def testset(charset): map = charset i = 0 while i < len(charset)-1: map = rotate(map) i += 1 plain = CIPHERTEXT.translate( str.maketrans(CHARSET, map) ) #print( "%2d: %s\n" % (i, plain), end='') for txt in SENTINELS: if txt in plain: print("\n\n\nFOUND!\n\n\n\n") print(charset) exit(0) def permset(charset_bits): PRINT_EVERY = 1000 i = 0 for perm in itertools.permutations(charset_bits): perm = ''.join(perm) if i % PRINT_EVERY == 0: print(perm) testset(perm) i += 1 permset( [string.ascii_uppercase, "0123456789"] + list(" +-.:") ) permset( [reverse(string.ascii_uppercase), "0123456789"] + list(" +-.:") ) permset( [string.ascii_uppercase, reverse("0123456789")] + list(" +-.:") ) permset( [reverse(string.ascii_uppercase), reverse("0123456789")] + list(" +-.:") )
Possibly, but I can't see anything that it was an actual Thargoid - there's certainly nothing 'giant insect'-esque in the descriptions. Personally I'd expect that to come out from the descriptions if it was.
How they describe it:
(A note on B - I think it's worth us bearing in mind that the lack of clarity can be put down to them taking into account that wht they've found is alien, and so they've got no idea what the form of one of the actual aliens would be.)
- an object
- unclear if it's the pilot, the cargo, or an organic part of the ship itself
- inert
- breaking down the strongest bulkheads (apparently despite being inert)
- it became noisy (and they suspect noisier in frequencies below the range of human hearing)
- it causes EM interference
There's a lot of stuff there that doesn't particularly match what we know of actual Thargoids, but does match what we know of Thargoid tech. So it seems more likely to me that they found a specific bit of Thargoid tech rather than an actual Thargoid.
Thargoid attackWhat did they mean by the nebula reaching out to them?
Thargoid attack