Buffed base production of Hacknet Nodes. Re-calibrated hacker faction invites to account for starting with 8GB of RAM. BruteSSH only takes 10 minutes at most to complete now

This commit is contained in:
Daniel Xie
2017-05-24 10:32:45 -05:00
parent 5c16759908
commit d00211a4ff
4 changed files with 12 additions and 9 deletions
+1 -1
View File
@@ -1141,6 +1141,6 @@ function scriptCalculatePercentMoneyHacked(server) {
function scriptCalculateGrowTime(server) {
var difficultyMult = server.requiredHackingSkill * server.hackDifficulty;
var skillFactor = (2.5 * difficultyMult + 500) / (Player.hacking_skill + 50);
var growTime = skillFactor * 20; //This is in seconds
var growTime = skillFactor * 16; //This is in seconds
return growTime * 1000;
}