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
Respec() : Remove all researchable tech from player and return RP. Useful for trying out different research builds with the same level of tech.
SetDifficulty(x) : Change the difficulty of a game already in progress where x is a number > 0. The default is 1 and the named difficulties at start are powers of 2: 0.25, 0.5, 1, 2, 4, etc...
Give(commodity, amount) : Give the player an amount of a commodity. E.g., Give("GOLD",50)
Take(commodity, amount) : The reverse of that.
ListCommodities() : List possible commodities along with their enum code
Essentially you want
Give("RESEARCH_POINTS",20000) [[Might be RESEARCH or RESEARCH POINTS]]
Give("GOLD",20000)
Give("all other resource names",20000)
I don't think you can unlock all tech might be one
This is supposed to give you the cadet role and allow you to see the rest of the server and speak. When i click on the reaction nothing happens.
I'm not sure what's going on with it.
This is the link i found that justkevin put in another thread https://discord.gg/uddMTC5
For me that way works not Phantom's way.
none of these work...as stated by another poster it just opens up the console command window which states output (no return value)...none of the commands that are listed to type in do anything and nobody answered the poster in this thread who brought up the same issue.
1: type, ListCommodities()
on the left side of your UI you will see the list of commodities flash up with a corresponding ID eg. (RESEARCH_POINTS (5000)
2: Take the ID from your desired commodity, then write it as follows
Give("5000", 250)
Use same spacing and inverted commas etc. 5000 is the ID, and 250 is the amount.
So 250 research points.
Have fun!
thanks
How do these even work? Like already beens said the console does nothing except giving "no return value". No cheat actually works.
Anyone who actually know how to get it to work, also joined the discord but can't find anything on there.
First, when opening the console, be sure the field is clear. I find the console has the "l" already in the field from opening it with the ~ "l" combo. If you just type Give("5000", 250), what will actually be inputted is lGive("5000", 250). And that will make it not work.
Second, you must capitalize appropriately. It's Give not give. ListCommodities() not listcommodities().
Finally, you must include the parentheses and the quotation marks around the resource identification number, and make sure the comma that separates the identification number is outside the quotation marks. Give(5000,250) won't work. Give("5000", 250) does work.