From 1f4f6bd179d4bc05354240d807f5d9b638b37918 Mon Sep 17 00:00:00 2001 From: acogdev Date: Tue, 19 Mar 2019 09:52:28 -0600 Subject: [PATCH 1/3] Update purchaseServer docs to account for BitNode 10 BitNode 10 reduces the maximum RAM a purchased server can have so encouraging the use of getPurchasedServerMaxRam() instead of a hardcoded value of 2 ^ 20 --- doc/source/netscript/basicfunctions/purchaseServer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/netscript/basicfunctions/purchaseServer.rst b/doc/source/netscript/basicfunctions/purchaseServer.rst index caa316550..250077ef6 100644 --- a/doc/source/netscript/basicfunctions/purchaseServer.rst +++ b/doc/source/netscript/basicfunctions/purchaseServer.rst @@ -4,7 +4,7 @@ purchaseServer() Netscript Function .. js:function:: purchaseServer(hostname, ram) :param string hostname: Hostname of the purchased server - :param number ram: Amount of RAM of the purchased server. Must be a power of 2 (2, 4, 8, 16, etc.). Maximum value of 1048576 (2^20) + :param number ram: Amount of RAM of the purchased server. Must be a power of 2 (2, 4, 8, 16, etc.). Maximum value of getPurchasedServerMaxRam() :RAM cost: 2.25 GB Purchased a server with the specified hostname and amount of RAM. From bedd615c0e8fab5051a8b59454a5535c0e369bbc Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Mon, 18 Mar 2019 16:30:37 -0400 Subject: [PATCH 2/3] Making the QLink almost worth getting. --- src/Augmentation/AugmentationHelpers.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/Augmentation/AugmentationHelpers.js b/src/Augmentation/AugmentationHelpers.js index af405e93e..6606635b9 100644 --- a/src/Augmentation/AugmentationHelpers.js +++ b/src/Augmentation/AugmentationHelpers.js @@ -1218,12 +1218,14 @@ function initAugmentations() { "quantum supercomputer, allowing you to access and use its incredible " + "computing power.

" + "This augmentation:
" + - "Increases the player's hacking speed by 10%.
" + - "Increases the player's chance of successfully performing a hack by 30%.
" + - "Increases the amount of money the player gains from hacking by 100%.", - hacking_speed_mult: 1.1, - hacking_chance_mult: 1.3, - hacking_money_mult: 2, + "Increases the player's hacking skill by 100%.
" + + "Increases the player's hacking speed by 50%.
" + + "Increases the player's chance of successfully performing a hack by 150%.
" + + "Increases the amount of money the player gains from hacking by 500%.", + hacking_speed_mult: 1.5, + hacking_chance_mult: 2.5, + hacking_money_mult: 6, + hacking_mult: 2, }); QLink.addToFactions(["Illuminati"]); if (augmentationExists(AugmentationNames.QLink)) { From 0df437ef359285fd9e5102fc1e624b4275cb7516 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Mon, 18 Mar 2019 20:15:21 -0400 Subject: [PATCH 3/3] Update AugmentationHelpers.js --- src/Augmentation/AugmentationHelpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Augmentation/AugmentationHelpers.js b/src/Augmentation/AugmentationHelpers.js index 6606635b9..2d056969c 100644 --- a/src/Augmentation/AugmentationHelpers.js +++ b/src/Augmentation/AugmentationHelpers.js @@ -1213,7 +1213,7 @@ function initAugmentations() { //Illuminati var QLink = new Augmentation({ - name:AugmentationNames.QLink, repCost:750e3, moneyCost:1300e6, + name:AugmentationNames.QLink, repCost:750e3, moneyCost:10e12, info:"A brain implant that wirelessly connects you to the Illuminati's " + "quantum supercomputer, allowing you to access and use its incredible " + "computing power.

" +