From b695b190586d54b652ba1671aef9d7fabf294743 Mon Sep 17 00:00:00 2001 From: Daniel Xie Date: Tue, 23 May 2017 13:26:11 -0500 Subject: [PATCH] Reverted changes to Hacknet Node upgrade costs --- src/Constants.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Constants.js b/src/Constants.js index 267bae772..6e5d0f260 100644 --- a/src/Constants.js +++ b/src/Constants.js @@ -21,8 +21,8 @@ CONSTANTS = { HacknetNodeMoneyGainPerLevel: 1.25, HacknetNodePurchaseNextMult: 1.33, //Multiplier when purchasing an additional hacknet node HacknetNodeUpgradeLevelMult: 1.04, //Multiplier for cost when upgrading level - HacknetNodeUpgradeRamMult: 1.23, //Multiplier for cost when upgrading RAM - HacknetNodeUpgradeCoreMult: 1.43, //Multiplier for cost when buying another core + HacknetNodeUpgradeRamMult: 1.21, //Multiplier for cost when upgrading RAM + HacknetNodeUpgradeCoreMult: 1.41, //Multiplier for cost when buying another core HacknetNodeMaxLevel: 200, HacknetNodeMaxRam: 64, @@ -276,7 +276,7 @@ CONSTANTS = { "the current server, if it exists.

" + "hasRootAccess(hostname/ip)
Returns a boolean (true or false) indicating whether or not the Player has root access to a server. " + "The argument passed in must be a string with either the hostname or IP of the target server. Does NOT work while offline.
" + - "Example: if (hasRootAccess('foodnstuff') == false) {
    nuke('foodnstuff');
}

" + + "Example:
if (hasRootAccess('foodnstuff') == false) {
    nuke('foodnstuff');
}

" + "getHackingLevel()
Returns the Player's current hacking level. Does NOT work while offline

" + "getServerMoneyAvailable(hostname/ip)
Returns the amount of money available on a server. The argument passed in must be a string with either the " + "hostname or IP of the target server. Does NOT work while offline
Example: getServerMoneyAvailable('foodnstuff');

" +