From 9466017906ab32ea800ca55c36ef1c74ebc6a65c Mon Sep 17 00:00:00 2001
From: Olivier Gagnon
+
+ Respect: 108.82214 (0.23534 / sec)
+
+ Represents the amount of respect your gang has from other gangs and criminal organizations. Your respect affects the amount of money your gang members will earn, and also determines how much reputation you are earning with your gang's corresponding Faction.
+
+
+ Wanted Level: 1.37503 (0.00002 / sec)
+
+ Represents how much the gang is wanted by law enforcement. The higher your gang's wanted level, the harder it will be for your gang members to make money and earn respect. Note that the minimum wanted level is 1.
+
+
+ Wanted Level Penalty: -1.25%
+
+ Penalty for respect and money gain rates due to Wanted Level
+
+
+ Money gain rate:
+
+ $2.571k / sec
+
+
+ Territory: 14.29%
+
+ The percentage of total territory your Gang controls
+
+
+ Faction reputation:
+
+ 28.677
+
+
+ Bonus time: 1 hours 30 minutes 58 seconds
+
+ You gain bonus time while offline or when the game is inactive (e.g. when the tab is throttled by the browser). Bonus time makes the Gang mechanic progress faster, up to 5x the normal speed
+
+
+
+
+
+
+
+
+
Money gain rate: {MoneyRate(5 * this.moneyGainRate)}
, d0); +UIElems.gangInfo.appendChild(d0); +UIElems.gangInfo.appendChild(createElement("br")); + +var territoryMult = AllGangs[this.facName].territory * 100; +let displayNumber; +if (territoryMult <= 0) { + displayNumber = formatNumber(0, 2); +} else if (territoryMult >= 100) { + displayNumber = formatNumber(100, 2); +} else { + displayNumber = formatNumber(territoryMult, 2); +} +UIElems.gangInfo.appendChild(createElement("p", { + display: "inline-block", + innerText: `Territory: ${formatNumber(displayNumber, 3)}%`, + tooltip: "The percentage of total territory your Gang controls", +})); +UIElems.gangInfo.appendChild(createElement("br")); + +const d1 = createElement("div"); +ReactDOM.render(Faction reputation: {Reputation(rep)}
, d1); +UIElems.gangInfo.appendChild(d1); +UIElems.gangInfo.appendChild(createElement("br")); + +const CyclesPerSecond = 1000 / Engine._idleSpeed; +if (this.storedCycles / CyclesPerSecond*1000 > 5000) { + UIElems.gangInfo.appendChild(createElement("p", { + innerText: `Bonus time: ${convertTimeMsToTimeElapsedString(this.storedCycles / CyclesPerSecond*1000)}`, + display: "inline-block", + tooltip: "You gain bonus time while offline or when the game is inactive (e.g. when the tab is throttled by the browser). " + + "Bonus time makes the Gang mechanic progress faster, up to 5x the normal speed", + })); + UIElems.gangInfo.appendChild(createElement("br")); +} + +const numMembers = this.members.length; +const respectCost = this.getRespectNeededToRecruitMember(); + +const btn = UIElems.gangRecruitMemberButton; +if (numMembers >= GangConstants.MaximumGangMembers) { + btn.className = "a-link-button-inactive"; + UIElems.gangRecruitRequirementText.style.display = "inline-block"; + UIElems.gangRecruitRequirementText.innerHTML = "You have reached the maximum amount of gang members"; +} else if (this.canRecruitMember()) { + btn.className = "a-link-button"; + UIElems.gangRecruitRequirementText.style.display = "none"; +} else { + btn.className = "a-link-button-inactive"; + UIElems.gangRecruitRequirementText.style.display = "inline-block"; + UIElems.gangRecruitRequirementText.innerHTML = `${formatNumber(respectCost, 2)} respect needed to recruit next member`; +} + +*/ \ No newline at end of file