mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
e9dfe3c389
* Updated ram cost of documentation * v0.47.3 Co-authored-by: Samuel A. Lamb <samuei@users.noreply.github.com>
26 lines
579 B
ReStructuredText
26 lines
579 B
ReStructuredText
getStats() Netscript Function
|
|
=============================
|
|
|
|
.. js:function:: getStats()
|
|
|
|
If you are not in BitNode-4, then you must have Level 1 of Source-File 4 in order to run this function.
|
|
|
|
Returns an object with the Player's stats. The object has the following properties::
|
|
|
|
{
|
|
hacking
|
|
strength
|
|
defense
|
|
dexterity
|
|
agility
|
|
charisma
|
|
intelligence
|
|
}
|
|
|
|
Example::
|
|
|
|
res = getStats();
|
|
print('My charisma level is: ' + res.charisma);
|
|
|
|
:RAM cost: 0.5 GB
|