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) > [upgradeSkill](./bitburner.bladeburner.upgradeskill.md)
|
|
|
|
|
|
|
|
## Bladeburner.upgradeSkill() method
|
|
|
|
|
|
|
|
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
|
|
|
upgradeSkill(skillName: string, count?: number): boolean;
|
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 to be upgraded. 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
|
|
|
|
|
|
|
boolean
|
|
|
|
|
|
|
|
true if the skill is successfully upgraded, and false otherwise.
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
RAM cost: 4 GB
|
|
|
|
|
|
|
|
Attempts to upgrade the specified Bladeburner skill the specified number of times.
|
|
|
|
|
|
|
|
Returns true if the skill is successfully upgraded, and false otherwise.
|
|
|
|
|