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
e.g. in the early game
SetFlag("BEYOND.ERMYR_BRIBED") will set the flag in the Beyond the Gateway mission (from the BEYOND story) for the Ermyr being bribed to true ; ClearFlag would un-set it. Presumably this has some bearing on whether the Ermyr offer that option (in addition to whether you got the hint about them being bribe-able in the first place), and whether they show up when needed.
- Is there a console command to selectively remove *one* technology, or is that something more easily done at the level of the save file?
There's currently no "forget one tech" command, so you're better off editing the save.
Also, SetFlag() doesn't give you a tech. If a tech has some narrative prerequisite, this will unlock the tech. AddTech is the command to gift yourself a tech.
Gotcha. e.g. EMP resistance / hard radiation resistance have prerequisite flags for the tech to become unlocked
i ask because im tired of grinding for Neutronium and gold
I did this once before and didn't write down how I did it. One moment
So the syntax is
SetResource(string, int)
where 'string' is an all-caps string literal matching one of the physical resource types (not e.g. RESOURCEPOINTS, but "ALUMINUM", "GOLD", etc. enclosed in double-quotes
int is a 32-bit integer (though the UI looks prettiest with numbers 0 through 999999 only)
So e.g.
> SetResource("CHIRALITE", 100)
- Sets your Chiralite inventory to 100
> SetResource("XENIUM", 0)
- Takes away any Xenium you're carrying
AdjustResearchPoints() accepts an integer, but it can be signed (e.g. 1000, -1000) to add or subtract 1000 RP respectively
I assume that AdjustResource() works with a string literal and a signed integer
You *can* SetResource to a negative number ; if done at your space station you'll be prevented from leaving. I assume it has some use in the Planning Mode UI or something
Owing to how JSON can remember things which are no longer used (or have no idea of things which have yet to be used) the game files are full of such things.
One of these days, we need to have @justkevin do a Reddit-style AMA and have him answer questions like, "What's the Oxygen Infuser for?" and "why have I never heard of the Astroscience officer expressing an allergy to the Nimion diplomat's fur?"
It's easy for us to dismiss these things as 'cut content' but at the same time, it's hard for the players to submit feedback on events that never happen but don't block anything lol :D
How to open console command?
F11 to open the dev. console
F11 again to close it.