2022-10-21 17:16:00 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [Bladeburner](./bitburner.bladeburner.md) > [getSkillUpgradeCost](./bitburner.bladeburner.getskillupgradecost.md)
|
|
|
|
|
|
|
|
## Bladeburner.getSkillUpgradeCost() method
|
|
|
|
|
|
|
|
Get cost to upgrade skill.
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Signature:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
```typescript
|
2023-10-03 02:14:44 +02:00
|
|
|
getSkillUpgradeCost(skillName: string, count?: number): number;
|
2022-10-21 17:16:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2023-10-03 02:14:44 +02:00
|
|
|
| skillName | string | Name of skill. Case-sensitive and must be an exact match. |
|
2023-02-11 19:18:50 +01:00
|
|
|
| count | number | _(Optional)_ Number of times to upgrade the skill. Defaults to 1 if not specified. |
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Returns:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
number
|
|
|
|
|
|
|
|
Number of skill points needed to upgrade the specified skill.
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
RAM cost: 4 GB
|
|
|
|
|
|
|
|
This function returns the number of skill points needed to upgrade the specified skill the specified number of times.
|
|
|
|
|
2024-02-01 01:40:27 +01:00
|
|
|
The function returns -1 if an invalid skill name is passed in, and Infinity if the count overflows the maximum level.
|
2022-10-21 17:16:00 +02:00
|
|
|
|