mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-17 21:23:54 +01:00
32 lines
690 B
Markdown
32 lines
690 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [getResetInfo](./bitburner.ns.getresetinfo.md)
|
|
|
|
## NS.getResetInfo() method
|
|
|
|
Get information about resets.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
getResetInfo(): ResetInfo;
|
|
```
|
|
**Returns:**
|
|
|
|
[ResetInfo](./bitburner.resetinfo.md)
|
|
|
|
## Remarks
|
|
|
|
RAM cost: 1 GB
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
const resetInfo = ns.getResetInfo();
|
|
const lastAugReset = resetInfo.lastAugReset;
|
|
ns.tprint(`The last augmentation reset was: ${new Date(lastAugReset)}`);
|
|
ns.tprint(`It has been ${Date.now() - lastAugReset} ms since the last augmentation reset.`);
|
|
```
|
|
|