mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-02 12:33:56 +01:00
18 lines
355 B
ReStructuredText
18 lines
355 B
ReStructuredText
getStamina() Netscript Function
|
|
===============================
|
|
|
|
.. js:function:: getStamina()
|
|
|
|
:RAM cost: 4 GB
|
|
|
|
Returns an array with two elements:
|
|
|
|
[Current stamina, Max stamina]
|
|
|
|
Example usage::
|
|
|
|
function getStaminaPercentage() {
|
|
let res = bladeburner.getStamina();
|
|
return res[0] / res[1];
|
|
}
|