mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 07:33:48 +01:00
update doc
This commit is contained in:
parent
4860d6dc83
commit
50919a88cd
26
dist/vendor.bundle.js
vendored
26
dist/vendor.bundle.js
vendored
File diff suppressed because one or more lines are too long
@ -79,7 +79,7 @@ Growth can be made more efficient by dividing it into many processes, instead of
|
|||||||
Utilizing `sleep()` or `asleep()` to ensure that your scripts do not all start at the same time can decrease the chance of issues associated with overhacking occurring. Both functions have a ram cost of zero.
|
Utilizing `sleep()` or `asleep()` to ensure that your scripts do not all start at the same time can decrease the chance of issues associated with overhacking occurring. Both functions have a ram cost of zero.
|
||||||
|
|
||||||
Batch algorithms (HGW, HWGW, or Cycles)
|
Batch algorithms (HGW, HWGW, or Cycles)
|
||||||
-------------------------------------
|
---------------------------------------
|
||||||
**Difficulty**: Hard
|
**Difficulty**: Hard
|
||||||
|
|
||||||
Pros:
|
Pros:
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
canPlace() Netscript Function
|
|
||||||
=======================================
|
|
||||||
|
|
||||||
.. js:function:: canPlace(worldX, worldY, rotation, fragmentId)
|
|
||||||
|
|
||||||
:RAM cost: 0.5 GB
|
|
||||||
:param int worldX: World X against which to align the top left of the fragment.
|
|
||||||
:param int worldY: World Y against which to align the top left of the fragment.
|
|
||||||
:param int rotation: A number from 0 to 3, the mount of 90 degree turn to take.
|
|
||||||
:param int fragmentId: ID of the fragment to place.
|
|
||||||
:returns: `true` if the fragment can be placed at that position. `false` otherwise.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
.. code-block:: javascript
|
|
||||||
canPlace(0, 4, 17); // returns true
|
|
@ -1,21 +0,0 @@
|
|||||||
charge() Netscript Function
|
|
||||||
=======================================
|
|
||||||
|
|
||||||
.. js:function:: charge(worldX, worldY)
|
|
||||||
|
|
||||||
:RAM cost: 0.4 GB
|
|
||||||
:param int worldX: World X of the fragment to charge.
|
|
||||||
:param int worldY: World Y of the fragment to charge.
|
|
||||||
|
|
||||||
Charge a fragment, increasing it's power but also it's heat. The
|
|
||||||
effectiveness of the charge depends on the amount of ram the running script
|
|
||||||
consumes as well as the fragments current heat. This operation takes time to
|
|
||||||
complete.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
.. code-block:: javascript
|
|
||||||
charge(0, 4); // Finishes 5 seconds later.
|
|
||||||
.. warning::
|
|
||||||
|
|
||||||
Netscript JS users: This function is `async`
|
|
@ -1,13 +0,0 @@
|
|||||||
clear() Netscript Function
|
|
||||||
=======================================
|
|
||||||
|
|
||||||
.. js:function:: clear()
|
|
||||||
|
|
||||||
:RAM cost: 0 GB
|
|
||||||
|
|
||||||
Completely clear Stanek's Gift.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
.. code-block:: javascript
|
|
||||||
clear(); // No more fragments.
|
|
@ -1,16 +0,0 @@
|
|||||||
deleteAt() Netscript Function
|
|
||||||
=======================================
|
|
||||||
|
|
||||||
.. js:function:: deleteAt(worldX, worldY)
|
|
||||||
|
|
||||||
:RAM cost: 0.15 GB
|
|
||||||
:param int worldX: World X coordinate of the fragment to delete.
|
|
||||||
:param int worldY: World Y coordinate of the fragment to delete.
|
|
||||||
:returns: `true` if the fragment was deleted. `false` otherwise.
|
|
||||||
|
|
||||||
Delete the fragment located at `[worldX, worldY]`.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
.. code-block:: javascript
|
|
||||||
deleteAt(0, 4); // returns true
|
|
@ -1,28 +0,0 @@
|
|||||||
fragmentAt() Netscript Function
|
|
||||||
=======================================
|
|
||||||
|
|
||||||
.. js:function:: fragmentAt(worldX, worldY)
|
|
||||||
|
|
||||||
:RAM cost: 2 GB
|
|
||||||
:param int worldX: World X coordinate of the fragment.
|
|
||||||
:param int worldY: World Y coordinate of the fragment.
|
|
||||||
:returns: The fragment located at `[worldX, worldY]` in Stanek's Gift, or null.
|
|
||||||
|
|
||||||
.. code-block:: typescript
|
|
||||||
{
|
|
||||||
// In world coordinates
|
|
||||||
x: number;
|
|
||||||
y: number;
|
|
||||||
heat: number;
|
|
||||||
charge: number;
|
|
||||||
id: number;
|
|
||||||
shape: boolean[][];
|
|
||||||
type: string;
|
|
||||||
magnitude: number;
|
|
||||||
limit: number;
|
|
||||||
}
|
|
||||||
Example:
|
|
||||||
|
|
||||||
.. code-block:: javascript
|
|
||||||
var fragment = fragmentAt(0, 4);
|
|
||||||
print(fragment); // {'heat': 50, 'charge': 98}
|
|
@ -1,23 +0,0 @@
|
|||||||
fragmentDefinitions() Netscript Function
|
|
||||||
=======================================
|
|
||||||
|
|
||||||
.. js:function:: fragmentDefinitions()
|
|
||||||
|
|
||||||
:RAM cost: 0 GB
|
|
||||||
:returns: The list of all fragment that can be embedded in Stanek's Gift.
|
|
||||||
|
|
||||||
.. code-block:: typescript
|
|
||||||
[
|
|
||||||
{
|
|
||||||
id: number;
|
|
||||||
shape: boolean[][];
|
|
||||||
type: string;
|
|
||||||
magnitude: number;
|
|
||||||
limit: number;
|
|
||||||
}
|
|
||||||
]
|
|
||||||
Example:
|
|
||||||
|
|
||||||
.. code-block:: javascript
|
|
||||||
var fragments = fragmentDefinitions();
|
|
||||||
print(fragment); // prints all possible fragments
|
|
@ -1,16 +0,0 @@
|
|||||||
place() Netscript Function
|
|
||||||
=======================================
|
|
||||||
|
|
||||||
.. js:function:: place(worldX, worldY, fragmentId)
|
|
||||||
|
|
||||||
:RAM cost: 5 GB
|
|
||||||
:param int worldX: World X against which to align the top left of the fragment.
|
|
||||||
:param int worldY: World Y against which to align the top left of the fragment.
|
|
||||||
:param int rotation: A number from 0 to 3, the mount of 90 degree turn to take.
|
|
||||||
:param int fragmentId: ID of the fragment to place.
|
|
||||||
:returns: `true` if the fragment has been placed at that position. `false` otherwise.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
.. code-block:: javascript
|
|
||||||
place(0, 4, 17); // returns true
|
|
@ -1,26 +0,0 @@
|
|||||||
placedFragments() Netscript Function
|
|
||||||
=======================================
|
|
||||||
|
|
||||||
.. js:function:: placedFragments()
|
|
||||||
|
|
||||||
:RAM cost: 5 GB
|
|
||||||
:returns: The list of all fragment that are embedded in Stanek's Gift.
|
|
||||||
|
|
||||||
.. code-block:: typescript
|
|
||||||
[
|
|
||||||
{
|
|
||||||
// In world coordinates
|
|
||||||
x: number;
|
|
||||||
y: number;
|
|
||||||
charge: number;
|
|
||||||
id: number;
|
|
||||||
shape: boolean[][];
|
|
||||||
type: string;
|
|
||||||
power: number;
|
|
||||||
limit: number;
|
|
||||||
}
|
|
||||||
]
|
|
||||||
Example:
|
|
||||||
|
|
||||||
.. code-block:: javascript
|
|
||||||
var myFragments = placedFragments();
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user