Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Home to a faction: stay out of colored areas.
Regular: avoid green dots.
After you follow these guidelines, there's a 1/20 chance each time you jump. However, to prevent frustration, it will guaranteed spawn if you make 8 such jumps in a row. (avoid yellow dots, they're sometimes smuggler faction and therefore non-admissible)
I've been experimenting with doing 12-20 consecutive jumps and trying something new, but to no avail. Swoks will not show in my game.
The most frusterating thing is not knowing if my progression is being halted and my time wasted by a bug, or some parameter that just isn't apparent. Not a single merchant vessel has ever even mentioned this guy.
empty space.. loading screen.. empty space.. loading screen..
If I may ask are you computing the distance using Pythagorean theorem? You seem to be doing it correctly otherwise by avoiding the green and yellow blips.
If by that you mean finding the correct distance from the center, i'm using the X and Y coords to put myself usually around the 400 line, my latest I was around X-400Y-400 and now moving toward X0 Y-400 and still looking.
Dude (400, 400) is way past the 430 range, it's 565.69.
Oi, then I'm afraid I have no idea how to measure how far from the core 380-430 is. I just assumed they meant sectors.
Pythagorean theorem. Square the X, square the Y, add the two and take the square root of the sum. sqrt(x^2 + y^2).
if dist > 380 and dist < 430 then
this is the equation :
http://i.imgur.com/FYmqBkB.png
Lua? If that's taken from the game code then I now know why it took me 9 jumps. I thought exactly 380 will do.
if dist > 380 and dist < 430 then
if not regular and not offgrid and not blocked and not home then
if math.random() < 0.05 or consecutiveJumps > 8
If you jump in a wrong sector, consecutiveJumps is reset, etc :)