Home > bitburner > NS > getRecentScripts
Get an array of recently killed scripts across all servers.
Signature:
getRecentScripts(): RecentScript[];
Returns:
Array with information about previously killed scripts.
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
.
let recentScripts = ns.getRecentScripts();
let mostRecent = recentScripts.shift();
if (mostRecent)
ns.tprint(mostRecent.logs.join('\n'));