bitburner-src/doc/source/netscript/basicfunctions/getServerMaxRam.rst
2023-01-06 14:43:09 +02:00

16 lines
416 B
ReStructuredText

getServerMaxRam() Netscript Function
====================================
.. js:function:: getServerMaxRam(hostname)
:RAM cost: 0.05 GB
:param string hostname: Hostname of target server.
:returns: Total ram available on that server. In GB.
Example:
.. code-block:: javascript
const maxRam = ns.getServerMaxRam("helios"); // returns: 16
ns.print("helios has "+maxRam + "GB");