bitburner-src/markdown/bitburner.ns.run.md

71 lines
2.6 KiB
Markdown
Raw Normal View History

2021-10-30 18:34:14 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [NS](./bitburner.ns.md) &gt; [run](./bitburner.ns.run.md)
## NS.run() method
Start another script on the current server.
2021-10-30 18:34:14 +02:00
<b>Signature:</b>
```typescript
2022-01-03 16:10:22 +01:00
run(script: string, numThreads?: number, ...args: Array<string | number | boolean>): number;
2021-10-30 18:34:14 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2021-10-30 21:46:34 +02:00
| script | string | Filename of script to run. |
2021-10-30 18:34:14 +02:00
| numThreads | number | Optional thread count for new script. Set to 1 by default. Will be rounded to nearest integer. |
2022-01-08 19:25:06 +01:00
| args | Array&lt;string \| number \| boolean&gt; | Additional arguments to pass into the new script that is being run. Note that if any arguments are being passed into the new script, then the second argument numThreads must be filled in with a value. |
2021-10-30 18:34:14 +02:00
<b>Returns:</b>
number
Returns the PID of a successfully started script, and 0 otherwise.
## Remarks
2021-10-30 21:46:34 +02:00
RAM cost: 1 GB
2021-10-30 18:34:14 +02:00
Run a script as a separate process. This function can only be used to run scripts located on the current server (the server running the script that calls this function). Requires a significant amount of RAM to run this command.
If the script was successfully started, then this functions returns the PID of that script. Otherwise, it returns 0.
PID stands for Process ID. The PID is a unique identifier for each script. The PID will always be a positive integer.
Running this function with a numThreads argument of 0 will return 0 without running the script. However, running this function with a negative numThreads argument will cause a runtime error.
2021-10-30 18:34:14 +02:00
## Example 1
2021-10-30 21:46:34 +02:00
```ts
2022-01-08 19:25:06 +01:00
// NS1:
2021-10-30 18:34:14 +02:00
//The simplest way to use the run command is to call it with just the script name. The following example will run foo.script single-threaded with no arguments:
run("foo.script");
//The following example will run foo.script but with 5 threads instead of single-threaded:
run("foo.script", 5);
2022-01-08 19:25:06 +01:00
//This next example will run foo.script single-threaded, and will pass the string foodnstuff into the script as an argument:
run("foo.script", 1, 'foodnstuff');
2021-10-30 18:34:14 +02:00
```
2022-01-08 19:25:06 +01:00
## Example 2
2021-10-30 18:34:14 +02:00
2021-10-30 21:46:34 +02:00
```ts
2022-01-08 19:25:06 +01:00
// NS2:
//The simplest way to use the run command is to call it with just the script name. The following example will run foo.script single-threaded with no arguments:
ns.run("foo.script");
//The following example will run foo.script but with 5 threads instead of single-threaded:
ns.run("foo.script", 5);
2021-10-30 18:34:14 +02:00
//This next example will run foo.script single-threaded, and will pass the string foodnstuff into the script as an argument:
2022-01-08 19:25:06 +01:00
ns.run("foo.script", 1, 'foodnstuff');
2021-10-30 18:34:14 +02:00
```