Time to create program now affected by hacking level

This commit is contained in:
Daniel Xie
2017-05-17 09:23:47 -05:00
parent 1789886604
commit 48bcfb75b1
4 changed files with 23 additions and 12 deletions
+2 -2
View File
@@ -304,7 +304,7 @@ PlayerObject.prototype.checkForFactionInvitations = function() {
//NiteSec
var nitesecFac = Factions["NiteSec"];
if (nitesecFac.isBanned == false && nitesecFac.isMember == false &&
this.hacking_skill >= 500 && homeComp.maxRam >= 32) {
this.hacking_skill >= 200 && homeComp.maxRam >= 8) {
invitedFactions.push(nitesecFac);
}
@@ -404,7 +404,7 @@ PlayerObject.prototype.checkForFactionInvitations = function() {
var slumsnakesFac = Factions["Slum Snakes"];
if (slumsnakesFac.isBanned == false && slumsnakesFac.isMember == false &&
this.strength >= 30 && this.defense >= 30 && this.dexterity >= 30 &&
this.agility >= 30 && this.karma <= -15 && this.money >= 1000000) {
this.agility >= 30 && this.karma <= -10 && this.money >= 1000000) {
invitedFactions.push(slumsnakesFac);
}