mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +01:00
ae15914efa
Unfortunately, I haven't used most of the specialty APIs yet, so I'm not intimately familiar with where their documentation might be wrong. I figured some fixes were better than no fixes, and I can always make more fixes later. Fixes #1023.
24 lines
704 B
ReStructuredText
24 lines
704 B
ReStructuredText
prompt() Netscript Function
|
|
===========================
|
|
|
|
.. js:function:: prompt(txt)
|
|
|
|
:RAM cost: 0 GB
|
|
:param string txt: Text to appear in the prompt dialog box.
|
|
:returns: ``true`` if the player clicks "Yes".
|
|
|
|
Prompts the player with a dialog box with two options: "Yes" and "No". This
|
|
function will return true if the player click "Yes" and false if the player
|
|
clicks "No". The script's execution is halted until the player selects one
|
|
of the options.
|
|
|
|
Example:
|
|
|
|
.. code-block:: javascript
|
|
|
|
cost = getPurchasedServerCost(8192);
|
|
answer = prompt("Buy a server for $"+cost);
|
|
if(answer) {
|
|
purchaseServer("my server", 8192);
|
|
}
|