mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-09 17:23:53 +01:00
Hotfix negative money, n00dles metadata and guide
This commit is contained in:
parent
08aac8e35d
commit
b99711788f
4
dist/engine.bundle.js
vendored
4
dist/engine.bundle.js
vendored
File diff suppressed because one or more lines are too long
@ -56,8 +56,3 @@ through destroying BitNodes is:
|
|||||||
|
|
||||||
* Source-Files
|
* Source-Files
|
||||||
* Scripts on the home computer
|
* Scripts on the home computer
|
||||||
|
|
||||||
BitNode Details
|
|
||||||
^^^^^^^^^^^^^^^
|
|
||||||
|
|
||||||
TODO
|
|
||||||
|
@ -373,9 +373,10 @@ Description
|
|||||||
Source-File
|
Source-File
|
||||||
:Max Level: Infinity
|
:Max Level: Infinity
|
||||||
|
|
||||||
Each level of Source-File 12 will increase all of your multipliers by 1%. This effect
|
Each level of Source-File 12 will let you start with Neuroflux Governor
|
||||||
is multiplicative with itself. In other words, level N of this Source-File will result
|
equal to the level of this Source-File.
|
||||||
in a multiplier of 1.01^N (or 0.99^N for multipliers that decrease)
|
|
||||||
|
This BitNode is meant to be done passively or when waiting for new content.
|
||||||
|
|
||||||
Difficulty
|
Difficulty
|
||||||
Initially very easy, but then it (obviously) becomes harder as you continue to do it.
|
Initially very easy, but then it (obviously) becomes harder as you continue to do it.
|
||||||
@ -396,27 +397,22 @@ For fast progression
|
|||||||
1. Repeat **BitNode-1: Source Genesis** until you max out its Source-File. Its Source-File
|
1. Repeat **BitNode-1: Source Genesis** until you max out its Source-File. Its Source-File
|
||||||
is extremely powerful, as it raises all multipliers by a significant amount.
|
is extremely powerful, as it raises all multipliers by a significant amount.
|
||||||
|
|
||||||
2. Repeat **BitNode-12: The Recursion** several times. This BitNode will be extremely easy the
|
2. Do **BitNode-5: Artificial Intelligence** once or twice. The intelligence stat it unlocks
|
||||||
first few times you tackle it, and its Source-File raises all multipliers. Furthermore,
|
|
||||||
its effect stacks multiplicatively with itself and other Source-Files/Augmentations,
|
|
||||||
which gets better as time goes on
|
|
||||||
|
|
||||||
3. Do **BitNode-5: Artificial Intelligence** once or twice. The intelligence stat it unlocks
|
|
||||||
will gradually build up as you continue to play the game, and will be helpful
|
will gradually build up as you continue to play the game, and will be helpful
|
||||||
in the future. The Source-File also provides hacking multipliers, which are
|
in the future. The Source-File also provides hacking multipliers, which are
|
||||||
strong because hacking is typically one of the best ways of earning money.
|
strong because hacking is typically one of the best ways of earning money.
|
||||||
|
|
||||||
4. (Optional) Consider doing **BitNode-4: The Singularity**. Its Source-File does not directly make you
|
3. (Optional) Consider doing **BitNode-4: The Singularity**. Its Source-File does not directly make you
|
||||||
more powerful in any way, but it does unlock :ref:`netscript_singularityfunctions` which
|
more powerful in any way, but it does unlock :ref:`netscript_singularityfunctions` which
|
||||||
let you automate significantly more aspects of the game.
|
let you automate significantly more aspects of the game.
|
||||||
|
|
||||||
5. Do **BitNode-3: Corporatocracy** once to unlock the Corporation mechanic. This mechanic
|
4. Do **BitNode-3: Corporatocracy** once to unlock the Corporation mechanic. This mechanic
|
||||||
has high profit potential.
|
has high profit potential.
|
||||||
|
|
||||||
6. Do **BitNode-6: Bladeburners** once to unlock the Bladeburners mechanic. The Bladeburner
|
5. Do **BitNode-6: Bladeburners** once to unlock the Bladeburners mechanic. The Bladeburner
|
||||||
mechanic is useful for some of the future BitNodes (such as 9 and 10).
|
mechanic is useful for some of the future BitNodes (such as 9 and 10).
|
||||||
|
|
||||||
7. Do **BitNode-9: Hacktocracy** to unlock the Hacknet Server mechanic. You can
|
6. Do **BitNode-9: Hacktocracy** to unlock the Hacknet Server mechanic. You can
|
||||||
consider repeating it as well, as its Level 2 and 3 effects are pretty helpful as well.
|
consider repeating it as well, as its Level 2 and 3 effects are pretty helpful as well.
|
||||||
|
|
||||||
.. todo:: To be continued as more BitNodes get added
|
.. todo:: To be continued as more BitNodes get added
|
||||||
|
@ -53,7 +53,7 @@ class NumeralFormatter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
formatMoney(n: number): string {
|
formatMoney(n: number): string {
|
||||||
if(n < 1000) {
|
if(Math.abs(n) < 1000) {
|
||||||
return this.format(n, "$0.00");
|
return this.format(n, "$0.00");
|
||||||
}
|
}
|
||||||
return this.format(n, "$0.000a");
|
return this.format(n, "$0.000a");
|
||||||
|
Loading…
Reference in New Issue
Block a user