mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
36 lines
946 B
Markdown
36 lines
946 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [getRecentScripts](./bitburner.ns.getrecentscripts.md)
|
|
|
|
## NS.getRecentScripts() method
|
|
|
|
Get an array of recently killed scripts across all servers.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
getRecentScripts(): RecentScript[];
|
|
```
|
|
**Returns:**
|
|
|
|
[RecentScript](./bitburner.recentscript.md)<!-- -->\[\]
|
|
|
|
Array with information about previously killed scripts.
|
|
|
|
## Remarks
|
|
|
|
RAM cost: 0.2 GB
|
|
|
|
The most recently killed script is the first element in the array. Note that there is a maximum number of recently killed scripts which are tracked. This is configurable in the game's options as `Recently killed scripts size`<!-- -->.
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
let recentScripts = ns.getRecentScripts();
|
|
let mostRecent = recentScripts.shift();
|
|
if (mostRecent)
|
|
ns.tprint(mostRecent.logs.join('\n'));
|
|
```
|
|
|