mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-13 19:23:52 +01:00
18 lines
412 B
ReStructuredText
18 lines
412 B
ReStructuredText
|
toast() Netscript Function
|
||
|
============================
|
||
|
|
||
|
.. js:function:: toast(message[, variant])
|
||
|
|
||
|
:RAM cost: 0 GB
|
||
|
:param string message: message to display
|
||
|
:param success|info|warning|error variant: color of the toast
|
||
|
|
||
|
Spawns a toast (those bottom left notifications).
|
||
|
|
||
|
Example:
|
||
|
|
||
|
.. code-block:: javascript
|
||
|
|
||
|
toast("Reached $1b");
|
||
|
toast("Failed to hack home", "error");
|