bitburner.cloud.getservercost.md

November 7, 2025 ยท View on GitHub

Home > bitburner > Cloud > getServerCost

Cloud.getServerCost() method

Get cost of purchasing a cloud server.

Signature:

getServerCost(ram: number): number;

Parameters

Parameter

Type

Description

ram

number

Amount of RAM of a potential cloud server, in GB. Must be a power of 2 (2, 4, 8, 16, etc.). Maximum value of 1048576 (2202^{20}).

Returns:

number

The cost to purchase a cloud server with the specified amount of ram, or returns Infinity if ram is not a valid amount.

Remarks

RAM cost: 0.25 GB

Returns the cost to purchase a cloud server with the specified amount of ram.

Example

const ram = 2 ** 20;
const cost = ns.cloud.getServerCost(ram);
ns.tprint(`A cloud server with ${ns.format.ram(ram)} costs $${ns.format.number(cost)}`);