mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
772 B
772 B
NS.sleep() method
Suspends the script for n milliseconds.
Signature:
sleep(millis: number): Promise<true>;
Parameters
Parameter | Type | Description |
---|---|---|
millis | number | Number of milliseconds to sleep. |
Returns:
Promise<true>
A promise that resolves to true when the sleep is completed.
Remarks
RAM cost: 0 GB
Example
// This will count from 1 to 10 in your terminal, with one number every 5 seconds
for (var i = 1; i <= 10; i++) {
ns.tprint(i);
await ns.sleep(5000);
}