mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
692 B
692 B
Home > bitburner > Bladeburner > getStamina
Bladeburner.getStamina() method
Get Bladeburner stamina.
Signature:
getStamina(): [number, number];
Returns:
number, number
Array containing current stamina and max stamina.
Remarks
RAM cost: 4 GB Returns an array with two elements: * [Current stamina, Max stamina]
Example
function getStaminaPercentage() {
const [current, max] = ns.bladeburner.getStamina();
return current / max;
}