Added Soft Reset ability in Options. Cancelling work only halves reputation, not other stuff liek money and exp. Added 7 new hacking Augmentations

This commit is contained in:
Daniel Xie
2017-05-31 10:58:09 -05:00
parent 2752ec069a
commit 6714d664d0
7 changed files with 212 additions and 42 deletions
+1 -1
View File
@@ -1266,7 +1266,7 @@ function scriptCalculateExpGain(server) {
function scriptCalculatePercentMoneyHacked(server) {
var difficultyMult = (100 - server.hackDifficulty) / 100;
var skillMult = (Player.hacking_skill - (server.requiredHackingSkill - 1)) / Player.hacking_skill;
var percentMoneyHacked = difficultyMult * skillMult * Player.hacking_money_mult / 350;
var percentMoneyHacked = difficultyMult * skillMult * Player.hacking_money_mult / 150;
if (percentMoneyHacked < 0) {return 0;}
if (percentMoneyHacked > 1) {return 1;}
return percentMoneyHacked;