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) > [startAction](./bitburner.bladeburner.startaction.md)
|
|
|
|
|
|
|
|
## Bladeburner.startAction() method
|
|
|
|
|
|
|
|
Start an action.
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Signature:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
startAction(type: string, name: string): boolean;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
|
|
|
| type | string | Type of action. |
|
|
|
|
| name | string | Name of action. Must be an exact match |
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Returns:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
boolean
|
|
|
|
|
|
|
|
True if the action was started successfully, and false otherwise.
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
RAM cost: 4 GB
|
|
|
|
|
|
|
|
Attempts to start the specified Bladeburner action. Returns true if the action was started successfully, and false otherwise.
|
|
|
|
|
2023-11-04 02:48:46 +01:00
|
|
|
## Example
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
ns.bladeburner.startAction("Contracts", "Tracking")
|
|
|
|
|
|
|
|
// This will start the Bladeburner Contracts action of Tracking
|
|
|
|
```
|
|
|
|
|