2019-03-03 04:08:54 +01:00
|
|
|
weaken() Netscript Function
|
|
|
|
===========================
|
|
|
|
|
2021-03-12 08:51:56 +01:00
|
|
|
.. js:function:: weaken(hostname[, opts={}])
|
2019-03-03 04:08:54 +01:00
|
|
|
|
2021-03-12 08:51:56 +01:00
|
|
|
:RAM cost: 0.15 GB
|
|
|
|
:param string hostname: Hostname of the target server to weaken.
|
2019-05-14 10:35:37 +02:00
|
|
|
:param object opts: Optional parameters for configuring function behavior. Properties:
|
2019-05-12 04:20:20 +02:00
|
|
|
|
|
|
|
* threads (*number*) - Number of threads to use for this function.
|
|
|
|
Must be less than or equal to the number of threads the script is running with.
|
2021-03-12 08:51:56 +01:00
|
|
|
:returns: The amount by which the target server's security level was
|
|
|
|
decreased. This is equivalent to 0.05 multiplied by the number of script
|
|
|
|
threads.
|
2019-05-12 04:20:20 +02:00
|
|
|
|
2021-03-12 08:51:56 +01:00
|
|
|
Use your hacking skills to attack a server's security, lowering the server's
|
|
|
|
security level. The runtime for this command depends on your hacking level
|
|
|
|
and the target server's security level. This function lowers the security
|
|
|
|
level of the target server by 0.05.
|
2019-03-03 04:08:54 +01:00
|
|
|
|
2021-03-12 08:51:56 +01:00
|
|
|
Like :doc:`hack<hack>` and :doc:`grow<grow>`, :doc:`weaken<weaken>` can be
|
|
|
|
called on any server, regardless of where the script is running. This
|
|
|
|
command requires root access to the target server, but there is no required
|
|
|
|
hacking level to run the command.
|
2019-03-03 04:08:54 +01:00
|
|
|
|
2021-03-12 08:51:56 +01:00
|
|
|
Example:
|
2019-03-03 04:08:54 +01:00
|
|
|
|
2021-03-12 08:51:56 +01:00
|
|
|
.. code-block:: javascript
|
2019-03-03 04:08:54 +01:00
|
|
|
|
|
|
|
weaken("foodnstuff");
|
2019-05-12 04:20:20 +02:00
|
|
|
weaken("foodnstuff", { threads: 5 }); // Only use 5 threads to weaken
|