mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 14:59:16 +02:00
DNET: Player feedback (#2545)
This commit is contained in:
committed by
GitHub
parent
73b7921ef0
commit
1b6b07faae
@@ -6,10 +6,12 @@
|
||||
|
||||
Sends a network request to try to authenticate on a darkweb server. The target server must be directly connected to the server that the script is running on. The speed of authentication scales with the number of threads used.
|
||||
|
||||
If successful, grants the script a session, allowing it to exec() scripts on that server, or scp() files to it. (scp() \*from\* the server is always allowed.)
|
||||
If successful, grants the current script a session, allowing it to exec() scripts on that server, or scp() files to it. (scp() \*from\* the server is always allowed.)
|
||||
|
||||
Note that the charisma level on a server is not a requirement for authentication, but authentication takes longer if the player's charisma is below the server's charisma level.
|
||||
|
||||
Note that the session granted is only for the current script instance (by PID) - other running scripts will need to use connectToSession with the correct password to also get a session with the target server.
|
||||
|
||||
**Signature:**
|
||||
|
||||
```typescript
|
||||
@@ -92,5 +94,5 @@ A promise that resolves to a [DarknetResult](./bitburner.darknetresult.md) objec
|
||||
|
||||
## Remarks
|
||||
|
||||
RAM cost: 0.6 GB
|
||||
RAM cost: 0.4 GB
|
||||
|
||||
|
||||
@@ -6,10 +6,12 @@
|
||||
|
||||
Attempts to connect to a target darkweb server that you have previously authenticated on. Unlike `authenticate`<!-- -->, connectToSession can be used to get a session on servers at any distance.
|
||||
|
||||
If successful, grants the script a session, allowing it to scp() files from that target. It also allows starting scripts with exec() on that target, if the target is directly connected to the server that the script is running on, or has a backdoor or stasis link.
|
||||
If successful, grants the script a session, allowing it to scp() files to that target. It also allows starting scripts with exec() on that target, if the target is directly connected to the server that the script is running on, or has a backdoor or stasis link.
|
||||
|
||||
If unsuccessful, more detail may be able to be gathered by using heartbleed() to look at the resulting logs on the server.
|
||||
|
||||
Note that the session granted is only for the current script instance (by PID) - other running scripts will need to use connectToSession with the correct password to also get a session with the target server.
|
||||
|
||||
**Signature:**
|
||||
|
||||
```typescript
|
||||
|
||||
@@ -34,10 +34,12 @@ Description
|
||||
|
||||
Sends a network request to try to authenticate on a darkweb server. The target server must be directly connected to the server that the script is running on. The speed of authentication scales with the number of threads used.
|
||||
|
||||
If successful, grants the script a session, allowing it to exec() scripts on that server, or scp() files to it. (scp() \*from\* the server is always allowed.)
|
||||
If successful, grants the current script a session, allowing it to exec() scripts on that server, or scp() files to it. (scp() \*from\* the server is always allowed.)
|
||||
|
||||
Note that the charisma level on a server is not a requirement for authentication, but authentication takes longer if the player's charisma is below the server's charisma level.
|
||||
|
||||
Note that the session granted is only for the current script instance (by PID) - other running scripts will need to use connectToSession with the correct password to also get a session with the target server.
|
||||
|
||||
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
@@ -49,10 +51,12 @@ Note that the charisma level on a server is not a requirement for authentication
|
||||
|
||||
Attempts to connect to a target darkweb server that you have previously authenticated on. Unlike `authenticate`<!-- -->, connectToSession can be used to get a session on servers at any distance.
|
||||
|
||||
If successful, grants the script a session, allowing it to scp() files from that target. It also allows starting scripts with exec() on that target, if the target is directly connected to the server that the script is running on, or has a backdoor or stasis link.
|
||||
If successful, grants the script a session, allowing it to scp() files to that target. It also allows starting scripts with exec() on that target, if the target is directly connected to the server that the script is running on, or has a backdoor or stasis link.
|
||||
|
||||
If unsuccessful, more detail may be able to be gathered by using heartbleed() to look at the resulting logs on the server.
|
||||
|
||||
Note that the session granted is only for the current script instance (by PID) - other running scripts will need to use connectToSession with the correct password to also get a session with the target server.
|
||||
|
||||
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
|
||||
13
markdown/bitburner.multipliers.dnet_money.md
Normal file
13
markdown/bitburner.multipliers.dnet_money.md
Normal file
@@ -0,0 +1,13 @@
|
||||
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||||
|
||||
[Home](./index.md) > [bitburner](./bitburner.md) > [Multipliers](./bitburner.multipliers.md) > [dnet\_money](./bitburner.multipliers.dnet_money.md)
|
||||
|
||||
## Multipliers.dnet\_money property
|
||||
|
||||
Multiplier to amount of money gained from phishing and caches on darknet servers
|
||||
|
||||
**Signature:**
|
||||
|
||||
```typescript
|
||||
dnet_money: number;
|
||||
```
|
||||
@@ -318,6 +318,25 @@ number
|
||||
Multiplier to dexterity skill
|
||||
|
||||
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
|
||||
[dnet\_money](./bitburner.multipliers.dnet_money.md)
|
||||
|
||||
|
||||
</td><td>
|
||||
|
||||
|
||||
</td><td>
|
||||
|
||||
number
|
||||
|
||||
|
||||
</td><td>
|
||||
|
||||
Multiplier to amount of money gained from phishing and caches on darknet servers
|
||||
|
||||
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user