mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
1.2 KiB
1.2 KiB
Home > bitburner > Sleeve > setToCommitCrime
Sleeve.setToCommitCrime() method
Set a sleeve to commit crime.
Signature:
setToCommitCrime(sleeveNumber: number, crimeType: CrimeType | `${CrimeType}`): boolean;
Parameters
Parameter | Type | Description |
---|---|---|
sleeveNumber | number | Index of the sleeve to start committing crime. Sleeves are numbered starting from 0. |
crimeType | CrimeType | `${CrimeType}` | Name of the crime. |
Returns:
boolean
True if this action was set successfully, false otherwise.
Remarks
RAM cost: 4 GB
Return a boolean indicating whether or not this action was set successfully (false if an invalid action is specified).
Example
// Assigns the first sleeve to Homicide.
ns.sleeve.setToCommitCrime(0, "Homicide");
// Assigns the second sleeve to Grand Theft Auto, using enum
const crimes = ns.enums.CrimeType;
ns.sleeve.setToCommitCrime(1, crimes.grandTheftAuto)