Home > bitburner > Cloud > getServerCost
Get cost of purchasing a cloud server.
Signature:
getServerCost(ram: number): number;|
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 (2^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.
RAM cost: 0.25 GB
Returns the cost to purchase a cloud server with the specified amount of ram.
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)}`);