Home > bitburner > Bladeburner > getStamina
Get Bladeburner stamina.
Signature:
getStamina(): [number, number];
Returns:
[number, number]
Array containing current stamina and max stamina.
RAM cost: 4 GB Returns an array with two elements: * [Current stamina, Max stamina]
function getStaminaPercentage() {
const [current, max] = ns.bladeburner.getStamina();
return current / max;
}