mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-18 10:53:43 +01:00
Merge pull request #4225 from quacksouls/doc-sleeve-crime
DOC: `ns.sleeve.setToCommitCrime()`: add list of crimes a sleeve can commit
This commit is contained in:
42
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
42
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -3618,8 +3618,46 @@ export interface Sleeve {
|
|||||||
*
|
*
|
||||||
* Returns false if an invalid action is specified.
|
* Returns false if an invalid action is specified.
|
||||||
*
|
*
|
||||||
* @param sleeveNumber - Index of the sleeve to start committing crime.
|
* You can set a sleeve to commit one of the following crimes. The crime names are not
|
||||||
* @param name - Name of the crime. Must be an exact match.
|
* case sensitive. For example, you can pass in the crime name as `"Shoplift"`,
|
||||||
|
* `"shoplift"`, `"shopLift"`, or even `"SHOPLIFT"`.
|
||||||
|
*
|
||||||
|
* - Assassination
|
||||||
|
* - Bond forgery
|
||||||
|
* - Deal drugs
|
||||||
|
* - Grand theft auto
|
||||||
|
* - Heist
|
||||||
|
* - Homicide
|
||||||
|
* - Kidnap
|
||||||
|
* - Larceny
|
||||||
|
* - Mug
|
||||||
|
* - Rob store
|
||||||
|
* - Shoplift
|
||||||
|
* - Traffick arms
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* ```ts
|
||||||
|
* // NS1
|
||||||
|
* // Assign the first 3 sleeves to commit various crimes.
|
||||||
|
* var crime = ["mug", "rob store", "shoplift"];
|
||||||
|
* for (var i = 0; i < crime.length; i++) {
|
||||||
|
* tprintf("Sleeve %d commits crime: %s", i, crime[i]);
|
||||||
|
* sleeve.setToCommitCrime(i, crime[i]);
|
||||||
|
* }
|
||||||
|
* ```
|
||||||
|
* @example
|
||||||
|
* ```ts
|
||||||
|
* // NS2
|
||||||
|
* // Assign the first 3 sleeves to commit various crimes.
|
||||||
|
* const crime = ["mug", "rob store", "shoplift"];
|
||||||
|
* for (let i = 0; i < crime.length; i++) {
|
||||||
|
* ns.tprintf("Sleeve %d commits crime: %s", i, crime[i]);
|
||||||
|
* ns.sleeve.setToCommitCrime(i, crime[i]);
|
||||||
|
* }
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* @param sleeveNumber - Index of the sleeve to start committing crime. Sleeves are numbered starting from 0.
|
||||||
|
* @param name - Name of the crime. Must be an exact match. Refer to the list of crimes.
|
||||||
* @returns True if this action was set successfully, false otherwise.
|
* @returns True if this action was set successfully, false otherwise.
|
||||||
*/
|
*/
|
||||||
setToCommitCrime(sleeveNumber: number, name: string): boolean;
|
setToCommitCrime(sleeveNumber: number, name: string): boolean;
|
||||||
|
Reference in New Issue
Block a user