2021-09-10 22:57:05 +02:00
|
|
|
import { AugmentationNames } from "./Augmentation/data/AugmentationNames";
|
|
|
|
import { CodingContractTypes } from "./CodingContracts";
|
|
|
|
import { generateContract, generateRandomContract, generateRandomContractOnHome } from "./CodingContractGenerator";
|
|
|
|
import { Companies } from "./Company/Companies";
|
|
|
|
import { Programs } from "./Programs/Programs";
|
|
|
|
import { Factions } from "./Faction/Factions";
|
|
|
|
import { IPlayer } from "./PersonObjects/IPlayer";
|
|
|
|
import { PlayerOwnedSourceFile } from "./SourceFile/PlayerOwnedSourceFile";
|
|
|
|
import { AllServers } from "./Server/AllServers";
|
|
|
|
import { HacknetServer } from "./Hacknet/HacknetServer";
|
|
|
|
import { GetServerByHostname } from "./Server/ServerHelpers";
|
|
|
|
import { hackWorldDaemon } from "./RedPill";
|
|
|
|
import { StockMarket } from "./StockMarket/StockMarket";
|
|
|
|
import { Bladeburner } from "./Bladeburner/Bladeburner";
|
|
|
|
import { Stock } from "./StockMarket/Stock";
|
|
|
|
import { IEngine } from "./IEngine";
|
|
|
|
import { saveObject } from "./SaveObject";
|
|
|
|
|
|
|
|
import { dialogBoxCreate } from "../utils/DialogBox";
|
|
|
|
import { Money } from "./ui/React/Money";
|
2021-09-13 18:44:46 +02:00
|
|
|
import { TextField } from "./ui/React/TextField";
|
|
|
|
import { Button } from "./ui/React/Button";
|
|
|
|
import { Select } from "./ui/React/Select";
|
2021-09-10 22:57:05 +02:00
|
|
|
|
|
|
|
import React, { useState } from "react";
|
2021-09-13 18:44:46 +02:00
|
|
|
import AddIcon from "@material-ui/icons/Add";
|
|
|
|
import RemoveIcon from "@material-ui/icons/Remove";
|
|
|
|
import IconButton from "@material-ui/core/IconButton";
|
|
|
|
import { Theme } from "./ui/React/Theme";
|
2021-09-10 22:57:05 +02:00
|
|
|
|
|
|
|
// Update as additional BitNodes get implemented
|
|
|
|
const validSFN = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];
|
|
|
|
|
|
|
|
// Some dev menu buttons just add a lot of something for convenience
|
|
|
|
const tonsPP = 1e27;
|
|
|
|
const tonsP = 1e12;
|
|
|
|
|
|
|
|
interface IValueAdjusterProps {
|
|
|
|
title: string;
|
|
|
|
add: (x: number) => void;
|
|
|
|
subtract: (x: number) => void;
|
|
|
|
reset: () => void;
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function ValueAdjusterComponent(props: IValueAdjusterProps): React.ReactElement {
|
2021-09-13 18:44:46 +02:00
|
|
|
const [value, setValue] = useState<number | string>("");
|
2021-09-10 22:57:05 +02:00
|
|
|
|
|
|
|
function onChange(event: React.ChangeEvent<HTMLInputElement>): void {
|
2021-09-13 18:44:46 +02:00
|
|
|
if (event.target.value === "") setValue("");
|
|
|
|
else setValue(parseFloat(event.target.value));
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const { title, add, subtract, reset } = props;
|
|
|
|
return (
|
|
|
|
<>
|
2021-09-13 18:44:46 +02:00
|
|
|
<TextField
|
2021-09-10 22:57:05 +02:00
|
|
|
value={value}
|
|
|
|
onChange={onChange}
|
2021-09-13 18:44:46 +02:00
|
|
|
placeholder={title}
|
|
|
|
type="number"
|
|
|
|
InputProps={{
|
|
|
|
startAdornment: (
|
|
|
|
<IconButton color="primary" onClick={() => add(typeof value !== "string" ? value : 0)}>
|
|
|
|
<AddIcon />
|
|
|
|
</IconButton>
|
|
|
|
),
|
|
|
|
endAdornment: (
|
|
|
|
<IconButton color="primary" onClick={() => subtract(typeof value !== "string" ? value : 0)}>
|
|
|
|
<RemoveIcon />
|
|
|
|
</IconButton>
|
|
|
|
),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Button onClick={reset}>Reset</Button>
|
2021-09-10 22:57:05 +02:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
player: IPlayer;
|
|
|
|
engine: IEngine;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function DevMenuRoot(props: IProps): React.ReactElement {
|
|
|
|
const [company, setCompany] = useState("ECorp");
|
|
|
|
const [faction, setFaction] = useState("Illuminati");
|
|
|
|
const [program, setProgram] = useState("NUKE.exe");
|
|
|
|
const [server, setServer] = useState("home");
|
|
|
|
const [augmentation, setAugmentation] = useState("Augmented Targeting I");
|
|
|
|
const [codingcontract, setCodingcontract] = useState("Find Largest Prime Factor");
|
|
|
|
const [stockPrice, setStockPrice] = useState(0);
|
|
|
|
const [stockSymbol, setStockSymbol] = useState("");
|
|
|
|
|
2021-09-13 18:44:46 +02:00
|
|
|
function setFactionDropdown(event: React.ChangeEvent<HTMLButtonElement>): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
setFaction(event.target.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setCompanyDropdown(event: React.ChangeEvent<HTMLSelectElement>): void {
|
|
|
|
setCompany(event.target.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setProgramDropdown(event: React.ChangeEvent<HTMLSelectElement>): void {
|
|
|
|
setProgram(event.target.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setServerDropdown(event: React.ChangeEvent<HTMLSelectElement>): void {
|
|
|
|
setServer(event.target.value);
|
|
|
|
}
|
|
|
|
|
2021-09-13 18:44:46 +02:00
|
|
|
function setAugmentationDropdown(event: React.FormEventHandler<HTMLSelectElement>): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
setAugmentation(event.target.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setCodingcontractDropdown(event: React.ChangeEvent<HTMLSelectElement>): void {
|
|
|
|
setCodingcontract(event.target.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setStockPriceField(event: React.ChangeEvent<HTMLInputElement>): void {
|
|
|
|
setStockPrice(parseFloat(event.target.value));
|
|
|
|
}
|
|
|
|
|
|
|
|
function setStockSymbolField(event: React.ChangeEvent<HTMLInputElement>): void {
|
|
|
|
setStockSymbol(event.target.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function addMoney(n: number) {
|
|
|
|
return function () {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.gainMoney(n);
|
2021-09-10 22:57:05 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function upgradeRam(): void {
|
|
|
|
props.player.getHomeComputer().maxRam *= 2;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function quickB1tFlum3(): void {
|
|
|
|
hackWorldDaemon(props.player.bitNodeN, true, true);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function b1tflum3(): void {
|
|
|
|
hackWorldDaemon(props.player.bitNodeN, true);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function quickHackW0r1dD43m0n(): void {
|
|
|
|
hackWorldDaemon(props.player.bitNodeN, false, true);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function hackW0r1dD43m0n(): void {
|
|
|
|
hackWorldDaemon(props.player.bitNodeN);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function modifyExp(stat: string, modifier: number) {
|
|
|
|
return function (exp: number) {
|
|
|
|
switch (stat) {
|
|
|
|
case "hacking":
|
|
|
|
if (exp) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.gainHackingExp(exp * modifier);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "strength":
|
|
|
|
if (exp) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.gainStrengthExp(exp * modifier);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "defense":
|
|
|
|
if (exp) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.gainDefenseExp(exp * modifier);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "dexterity":
|
|
|
|
if (exp) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.gainDexterityExp(exp * modifier);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "agility":
|
|
|
|
if (exp) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.gainAgilityExp(exp * modifier);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "charisma":
|
|
|
|
if (exp) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.gainCharismaExp(exp * modifier);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "intelligence":
|
|
|
|
if (exp) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.gainIntelligenceExp(exp * modifier);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.updateSkillLevels();
|
2021-09-10 22:57:05 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyKarma(modifier: number) {
|
|
|
|
return function (amt: number) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.karma += amt * modifier;
|
2021-09-10 22:57:05 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function tonsOfExp(): void {
|
|
|
|
props.player.gainHackingExp(tonsPP);
|
|
|
|
props.player.gainStrengthExp(tonsPP);
|
|
|
|
props.player.gainDefenseExp(tonsPP);
|
|
|
|
props.player.gainDexterityExp(tonsPP);
|
|
|
|
props.player.gainAgilityExp(tonsPP);
|
|
|
|
props.player.gainCharismaExp(tonsPP);
|
|
|
|
props.player.gainIntelligenceExp(tonsPP);
|
|
|
|
props.player.updateSkillLevels();
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function resetAllExp(): void {
|
|
|
|
props.player.hacking_exp = 0;
|
|
|
|
props.player.strength_exp = 0;
|
|
|
|
props.player.defense_exp = 0;
|
|
|
|
props.player.dexterity_exp = 0;
|
|
|
|
props.player.agility_exp = 0;
|
|
|
|
props.player.charisma_exp = 0;
|
|
|
|
props.player.intelligence_exp = 0;
|
|
|
|
props.player.updateSkillLevels();
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function resetExperience(stat: string): () => void {
|
|
|
|
return function () {
|
|
|
|
switch (stat) {
|
|
|
|
case "hacking":
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.hacking_exp = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
break;
|
|
|
|
case "strength":
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.strength_exp = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
break;
|
|
|
|
case "defense":
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.defense_exp = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
break;
|
|
|
|
case "dexterity":
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.dexterity_exp = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
break;
|
|
|
|
case "agility":
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.agility_exp = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
break;
|
|
|
|
case "charisma":
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.charisma_exp = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
break;
|
|
|
|
case "intelligence":
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.intelligence_exp = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
break;
|
|
|
|
}
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.updateSkillLevels();
|
2021-09-10 22:57:05 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function resetKarma(): () => void {
|
2021-09-10 22:57:05 +02:00
|
|
|
return function () {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.karma = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function enableIntelligence(): void {
|
|
|
|
if (props.player.intelligence === 0) {
|
|
|
|
props.player.intelligence = 1;
|
|
|
|
props.player.updateSkillLevels();
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function disableIntelligence(): void {
|
|
|
|
props.player.intelligence_exp = 0;
|
|
|
|
props.player.intelligence = 0;
|
|
|
|
props.player.updateSkillLevels();
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function receiveInvite(): void {
|
|
|
|
props.player.receiveInvite(faction);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function receiveAllInvites(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in Factions) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.receiveInvite(Factions[i].name);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyFactionRep(modifier: number): (x: number) => void {
|
|
|
|
return function (reputation: number): void {
|
|
|
|
const fac = Factions[faction];
|
|
|
|
if (fac != null && !isNaN(reputation)) {
|
|
|
|
fac.playerReputation += reputation * modifier;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function resetFactionRep(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
const fac = Factions[faction];
|
|
|
|
if (fac != null) {
|
|
|
|
fac.playerReputation = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyFactionFavor(modifier: number): (x: number) => void {
|
|
|
|
return function (favor: number): void {
|
|
|
|
const fac = Factions[faction];
|
|
|
|
if (fac != null && !isNaN(favor)) {
|
|
|
|
fac.favor += favor * modifier;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function resetFactionFavor(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
const fac = Factions[faction];
|
|
|
|
if (fac != null) {
|
|
|
|
fac.favor = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function tonsOfRep(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in Factions) {
|
|
|
|
Factions[i].playerReputation = tonsPP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function resetAllRep(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in Factions) {
|
|
|
|
Factions[i].playerReputation = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function tonsOfFactionFavor(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in Factions) {
|
|
|
|
Factions[i].favor = tonsPP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function resetAllFactionFavor(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in Factions) {
|
|
|
|
Factions[i].favor = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function queueAug(): void {
|
|
|
|
props.player.queueAugmentation(augmentation);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function queueAllAugs(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in AugmentationNames) {
|
|
|
|
const augName = AugmentationNames[i];
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.queueAugmentation(augName);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setSF(sfN: number, sfLvl: number) {
|
|
|
|
return function () {
|
|
|
|
if (sfLvl === 0) {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.sourceFiles = props.player.sourceFiles.filter((sf) => sf.n !== sfN);
|
2021-09-10 22:57:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
if (!props.player.sourceFiles.some((sf) => sf.n === sfN)) {
|
|
|
|
props.player.sourceFiles.push(new PlayerOwnedSourceFile(sfN, sfLvl));
|
2021-09-10 22:57:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
for (let i = 0; i < props.player.sourceFiles.length; i++) {
|
|
|
|
if (props.player.sourceFiles[i].n === sfN) {
|
|
|
|
props.player.sourceFiles[i].lvl = sfLvl;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function setAllSF(sfLvl: number) {
|
|
|
|
return () => {
|
|
|
|
for (let i = 0; i < validSFN.length; i++) {
|
|
|
|
setSF(validSFN[i], sfLvl)();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function clearExploits(): void {
|
|
|
|
props.player.exploits = [];
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function addProgram(): void {
|
|
|
|
if (!props.player.hasProgram(program)) {
|
|
|
|
props.player.getHomeComputer().programs.push(program);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function addAllPrograms(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in Programs) {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (!props.player.hasProgram(Programs[i].name)) {
|
|
|
|
props.player.getHomeComputer().programs.push(Programs[i].name);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function rootServer(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
const s = GetServerByHostname(server);
|
|
|
|
if (s === null) return;
|
|
|
|
if (s instanceof HacknetServer) return;
|
|
|
|
s.hasAdminRights = true;
|
|
|
|
s.sshPortOpen = true;
|
|
|
|
s.ftpPortOpen = true;
|
|
|
|
s.smtpPortOpen = true;
|
|
|
|
s.httpPortOpen = true;
|
|
|
|
s.sqlPortOpen = true;
|
|
|
|
s.openPortCount = 5;
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function rootAllServers(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in AllServers) {
|
|
|
|
const s = AllServers[i];
|
|
|
|
if (s instanceof HacknetServer) return;
|
|
|
|
s.hasAdminRights = true;
|
|
|
|
s.sshPortOpen = true;
|
|
|
|
s.ftpPortOpen = true;
|
|
|
|
s.smtpPortOpen = true;
|
|
|
|
s.httpPortOpen = true;
|
|
|
|
s.sqlPortOpen = true;
|
|
|
|
s.openPortCount = 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function minSecurity(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
const s = GetServerByHostname(server);
|
|
|
|
if (s === null) return;
|
|
|
|
if (s instanceof HacknetServer) return;
|
|
|
|
s.hackDifficulty = s.minDifficulty;
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function minAllSecurity(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in AllServers) {
|
|
|
|
const server = AllServers[i];
|
|
|
|
if (server instanceof HacknetServer) continue;
|
|
|
|
server.hackDifficulty = server.minDifficulty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function maxMoney(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
const s = GetServerByHostname(server);
|
|
|
|
if (s === null) return;
|
|
|
|
if (s instanceof HacknetServer) return;
|
|
|
|
s.moneyAvailable = s.moneyMax;
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function maxAllMoney(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in AllServers) {
|
|
|
|
const server = AllServers[i];
|
|
|
|
if (server instanceof HacknetServer) continue;
|
|
|
|
server.moneyAvailable = server.moneyMax;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyCompanyRep(modifier: number): (x: number) => void {
|
|
|
|
return function (reputation: number): void {
|
|
|
|
const c = Companies[company];
|
|
|
|
if (c != null && !isNaN(reputation)) {
|
|
|
|
c.playerReputation += reputation * modifier;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetCompanyRep(): void {
|
|
|
|
Companies[company].playerReputation = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyCompanyFavor(modifier: number): (x: number) => void {
|
|
|
|
return function (favor: number): void {
|
|
|
|
const c = Companies[company];
|
|
|
|
if (c != null && !isNaN(favor)) {
|
|
|
|
c.favor += favor * modifier;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetCompanyFavor(): void {
|
|
|
|
Companies[company].favor = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function tonsOfRepCompanies(): void {
|
|
|
|
for (const c in Companies) {
|
|
|
|
Companies[c].playerReputation = tonsP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetAllRepCompanies(): void {
|
|
|
|
for (const c in Companies) {
|
|
|
|
Companies[c].playerReputation = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function tonsOfFavorCompanies(): void {
|
|
|
|
for (const c in Companies) {
|
|
|
|
Companies[c].favor = tonsP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetAllFavorCompanies(): void {
|
|
|
|
for (const c in Companies) {
|
|
|
|
Companies[c].favor = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyBladeburnerRank(modify: number): (x: number) => void {
|
|
|
|
return function (rank: number): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.bladeburner) {
|
|
|
|
props.player.bladeburner.changeRank(props.player, rank * modify);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetBladeburnerRank(): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.bladeburner.rank = 0;
|
|
|
|
props.player.bladeburner.maxRank = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function addTonsBladeburnerRank(): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.bladeburner) {
|
|
|
|
props.player.bladeburner.changeRank(props.player, tonsP);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyBladeburnerCycles(modify: number): (x: number) => void {
|
|
|
|
return function (cycles: number): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.bladeburner) {
|
|
|
|
props.player.bladeburner.storedCycles += cycles * modify;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetBladeburnerCycles(): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.bladeburner) {
|
|
|
|
props.player.bladeburner.storedCycles = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function addTonsBladeburnerCycles(): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.bladeburner) {
|
|
|
|
props.player.bladeburner.storedCycles += tonsP;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function addTonsGangCycles(): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.gang) {
|
|
|
|
props.player.gang.storedCycles = tonsP;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyGangCycles(modify: number): (x: number) => void {
|
|
|
|
return function (cycles: number): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.gang) {
|
|
|
|
props.player.gang.storedCycles += cycles * modify;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetGangCycles(): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.gang) {
|
|
|
|
props.player.gang.storedCycles = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function addTonsCorporationFunds(): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.corporation) {
|
|
|
|
props.player.corporation.funds = props.player.corporation.funds.plus(1e99);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetCorporationFunds(): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.corporation) {
|
|
|
|
props.player.corporation.funds = props.player.corporation.funds.minus(props.player.corporation.funds);
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function addTonsCorporationCycles(): void {
|
|
|
|
if (props.player.corporation) {
|
|
|
|
props.player.corporation.storedCycles = tonsP;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function modifyCorporationCycles(modify: number): (x: number) => void {
|
|
|
|
return function (cycles: number): void {
|
2021-09-13 00:03:07 +02:00
|
|
|
if (props.player.corporation) {
|
|
|
|
props.player.corporation.storedCycles += cycles * modify;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function resetCorporationCycles(): void {
|
|
|
|
if (props.player.corporation) {
|
|
|
|
props.player.corporation.storedCycles = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function finishCorporationProducts(): void {
|
|
|
|
if (!props.player.corporation) return;
|
|
|
|
props.player.corporation.divisions.forEach((div) => {
|
2021-09-10 22:57:05 +02:00
|
|
|
Object.keys(div.products).forEach((prod) => {
|
|
|
|
const product = div.products[prod];
|
|
|
|
if (product === undefined) throw new Error("Impossible product undefined");
|
|
|
|
product.prog = 99.9;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function addCorporationResearch(): void {
|
|
|
|
if (!props.player.corporation) return;
|
|
|
|
props.player.corporation.divisions.forEach((div) => {
|
2021-09-10 22:57:05 +02:00
|
|
|
div.sciResearch.qty += 1e10;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function specificContract(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
generateContract({
|
|
|
|
problemType: codingcontract,
|
|
|
|
server: "home",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function processStocks(sub: (arg0: Stock) => void): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
const inputSymbols = stockSymbol.replace(/\s/g, "");
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
let match: (symbol: string) => boolean = (): boolean => {
|
2021-09-10 22:57:05 +02:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (inputSymbols !== "" && inputSymbols !== "all") {
|
2021-09-13 00:03:07 +02:00
|
|
|
match = function (symbol: string): boolean {
|
2021-09-10 22:57:05 +02:00
|
|
|
return inputSymbols.split(",").includes(symbol);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const name in StockMarket) {
|
|
|
|
if (StockMarket.hasOwnProperty(name)) {
|
|
|
|
const stock = StockMarket[name];
|
|
|
|
if (stock instanceof Stock && match(stock.symbol)) {
|
|
|
|
sub(stock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function doSetStockPrice(): void {
|
2021-09-10 22:57:05 +02:00
|
|
|
if (!isNaN(stockPrice)) {
|
|
|
|
processStocks((stock: Stock) => {
|
|
|
|
stock.price = stockPrice;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function viewStockCaps(): void {
|
|
|
|
const stocks: JSX.Element[] = [];
|
2021-09-10 22:57:05 +02:00
|
|
|
processStocks((stock: Stock) => {
|
|
|
|
stocks.push(
|
|
|
|
<tr key={stock.symbol}>
|
|
|
|
<td>{stock.symbol}</td>
|
|
|
|
<td style={{ textAlign: "right" }}>
|
|
|
|
<Money money={stock.cap} />
|
|
|
|
</td>
|
|
|
|
</tr>,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
dialogBoxCreate(
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>Stock</th>
|
|
|
|
<th>Price cap</th>
|
|
|
|
</tr>
|
|
|
|
{stocks}
|
|
|
|
</tbody>
|
|
|
|
</table>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function sleeveMaxAllShock(): void {
|
|
|
|
for (let i = 0; i < props.player.sleeves.length; ++i) {
|
|
|
|
props.player.sleeves[i].shock = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function sleeveClearAllShock(): void {
|
|
|
|
for (let i = 0; i < props.player.sleeves.length; ++i) {
|
|
|
|
props.player.sleeves[i].shock = 100;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function sleeveSyncMaxAll(): void {
|
|
|
|
for (let i = 0; i < props.player.sleeves.length; ++i) {
|
|
|
|
props.player.sleeves[i].sync = 100;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
function sleeveSyncClearAll(): void {
|
|
|
|
for (let i = 0; i < props.player.sleeves.length; ++i) {
|
|
|
|
props.player.sleeves[i].sync = 0;
|
2021-09-10 22:57:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function timeskip(time: number) {
|
|
|
|
return () => {
|
2021-09-13 00:03:07 +02:00
|
|
|
props.player.lastUpdate -= time;
|
2021-09-10 22:57:05 +02:00
|
|
|
props.engine._lastUpdate -= time;
|
|
|
|
saveObject.saveGame(props.engine.indexedDb);
|
|
|
|
setTimeout(() => location.reload(), 1000);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
const factions = [];
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in Factions) {
|
|
|
|
factions.push(
|
|
|
|
<option key={Factions[i].name} value={Factions[i].name}>
|
|
|
|
{Factions[i].name}
|
|
|
|
</option>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
const augs = [];
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in AugmentationNames) {
|
|
|
|
augs.push(
|
|
|
|
<option key={AugmentationNames[i]} value={AugmentationNames[i]}>
|
|
|
|
{AugmentationNames[i]}
|
|
|
|
</option>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
const programs = [];
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in Programs) {
|
|
|
|
programs.push(
|
|
|
|
<option key={Programs[i].name} value={Programs[i].name}>
|
|
|
|
{Programs[i].name}
|
|
|
|
</option>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
const servers = [];
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const i in AllServers) {
|
|
|
|
const hn = AllServers[i].hostname;
|
|
|
|
servers.push(
|
|
|
|
<option key={hn} value={hn}>
|
|
|
|
{hn}
|
|
|
|
</option>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-13 00:03:07 +02:00
|
|
|
const companies = [];
|
2021-09-10 22:57:05 +02:00
|
|
|
for (const c in Companies) {
|
|
|
|
const name = Companies[c].name;
|
|
|
|
companies.push(
|
|
|
|
<option key={name} value={name}>
|
|
|
|
{name}
|
|
|
|
</option>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const contractTypes = [];
|
|
|
|
const contractTypeNames = Object.keys(CodingContractTypes);
|
|
|
|
for (let i = 0; i < contractTypeNames.length; i++) {
|
|
|
|
const name = contractTypeNames[i];
|
|
|
|
contractTypes.push(
|
|
|
|
<option key={name} value={name}>
|
|
|
|
{name}
|
|
|
|
</option>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2021-09-13 18:44:46 +02:00
|
|
|
<Theme>
|
|
|
|
<div className="col" style={{ backgroundColor: "#222" }}>
|
|
|
|
<div className="row">
|
|
|
|
<h1>Development Menu - Only meant to be used for testing/debugging</h1>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
2021-09-13 18:44:46 +02:00
|
|
|
<div className="row">
|
|
|
|
<h2>Generic</h2>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
2021-09-13 18:44:46 +02:00
|
|
|
<div className="row">
|
|
|
|
<Button onClick={addMoney(1e6)}>
|
|
|
|
<pre>
|
|
|
|
+ <Money money={1e6} />
|
|
|
|
</pre>
|
|
|
|
</Button>
|
|
|
|
<Button onClick={addMoney(1e9)}>
|
|
|
|
<pre>
|
|
|
|
+ <Money money={1e9} />
|
|
|
|
</pre>
|
|
|
|
</Button>
|
|
|
|
<Button onClick={addMoney(1e12)}>
|
|
|
|
<pre>
|
|
|
|
+ <Money money={1e12} />
|
|
|
|
</pre>
|
|
|
|
</Button>
|
|
|
|
<Button onClick={addMoney(1e15)}>
|
|
|
|
<pre>
|
|
|
|
+ <Money money={1000e12} />
|
|
|
|
</pre>
|
|
|
|
</Button>
|
|
|
|
<Button onClick={addMoney(Infinity)}>
|
|
|
|
<pre>
|
|
|
|
+ <Money money={Infinity} />
|
|
|
|
</pre>
|
|
|
|
</Button>
|
|
|
|
<Button onClick={upgradeRam}>+ RAM</Button>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
2021-09-13 18:44:46 +02:00
|
|
|
<div className="row">
|
|
|
|
<Button onClick={quickB1tFlum3}>Quick b1t_flum3.exe</Button>
|
|
|
|
<Button onClick={b1tflum3}>Run b1t_flum3.exe</Button>
|
|
|
|
<Button onClick={quickHackW0r1dD43m0n}>Quick w0rld_d34m0n</Button>
|
|
|
|
<Button onClick={hackW0r1dD43m0n}>Hack w0rld_d34m0n</Button>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
2021-09-13 18:44:46 +02:00
|
|
|
<h2>Experience / Stats</h2>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text text-center">All:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<Button onClick={tonsOfExp}>Tons of exp</Button>
|
|
|
|
<Button onClick={resetAllExp}>Reset</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text text-center">Hacking:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
2021-09-13 18:44:46 +02:00
|
|
|
title="hacking exp"
|
|
|
|
add={modifyExp("hacking", 1)}
|
|
|
|
subtract={modifyExp("hacking", -1)}
|
|
|
|
reset={resetExperience("hacking")}
|
2021-09-10 22:57:05 +02:00
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text text-center">Strength:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="strength exp"
|
|
|
|
add={modifyExp("strength", 1)}
|
|
|
|
subtract={modifyExp("strength", -1)}
|
|
|
|
reset={resetExperience("strength")}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text text-center">Defense:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="defense exp"
|
|
|
|
add={modifyExp("defense", 1)}
|
|
|
|
subtract={modifyExp("defense", -1)}
|
|
|
|
reset={resetExperience("defense")}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text text-center">Dexterity:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="dexterity exp"
|
|
|
|
add={modifyExp("dexterity", 1)}
|
|
|
|
subtract={modifyExp("dexterity", -1)}
|
|
|
|
reset={resetExperience("dexterity")}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text text-center">Agility:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="agility exp"
|
|
|
|
add={modifyExp("agility", 1)}
|
|
|
|
subtract={modifyExp("agility", -1)}
|
|
|
|
reset={resetExperience("agility")}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text text-center">Charisma:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
2021-09-13 18:44:46 +02:00
|
|
|
title="charisma exp"
|
|
|
|
add={modifyExp("charisma", 1)}
|
|
|
|
subtract={modifyExp("charisma", -1)}
|
|
|
|
reset={resetExperience("charisma")}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text text-center">Intelligence:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="intelligence exp"
|
|
|
|
add={modifyExp("intelligence", 1)}
|
|
|
|
subtract={modifyExp("intelligence", -1)}
|
|
|
|
reset={resetExperience("intelligence")}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={enableIntelligence}>Enable</Button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={disableIntelligence}>Disable</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text text-center">Karma:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="karma"
|
|
|
|
add={modifyKarma(1)}
|
|
|
|
subtract={modifyKarma(-1)}
|
|
|
|
reset={resetKarma()}
|
2021-09-10 22:57:05 +02:00
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
2021-09-13 18:44:46 +02:00
|
|
|
<h2>Factions</h2>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Faction:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<Select
|
|
|
|
id="factions-dropdown"
|
|
|
|
className="dropdown exp-input"
|
|
|
|
onChange={setFactionDropdown}
|
|
|
|
value={faction}
|
|
|
|
>
|
|
|
|
{factions}
|
|
|
|
</Select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Invites:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={receiveInvite}>Receive invite from faction</Button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={receiveAllInvites}>Receive all Invites</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Reputation:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
2021-09-13 18:44:46 +02:00
|
|
|
title="reputation"
|
|
|
|
add={modifyFactionRep(1)}
|
|
|
|
subtract={modifyFactionRep(-1)}
|
|
|
|
reset={resetFactionRep}
|
2021-09-10 22:57:05 +02:00
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2021-09-13 18:44:46 +02:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Favor:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="favor"
|
|
|
|
add={modifyFactionFavor(1)}
|
|
|
|
subtract={modifyFactionFavor(-1)}
|
|
|
|
reset={resetFactionFavor}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">All Reputation:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={tonsOfRep}>Tons</Button>
|
|
|
|
<Button onClick={resetAllRep}>Reset</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">All Favor:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={tonsOfFactionFavor}>Tons</Button>
|
|
|
|
<Button onClick={resetAllFactionFavor}>Reset</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2021-09-10 22:57:05 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
2021-09-13 18:44:46 +02:00
|
|
|
<h2>Augmentations</h2>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Aug:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Select
|
|
|
|
id="dev-augs-dropdown"
|
|
|
|
className="dropdown"
|
|
|
|
onChange={setAugmentationDropdown}
|
|
|
|
value={augmentation}
|
|
|
|
>
|
|
|
|
{augs}
|
|
|
|
</Select>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Queue:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<Button onClick={queueAug}>One</Button>
|
|
|
|
<Button onClick={queueAllAugs}>All</Button>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2021-09-13 18:44:46 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Source-Files</h2>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
2021-09-10 22:57:05 +02:00
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Exploits:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button touch-right" onClick={clearExploits}>
|
|
|
|
Clear
|
2021-09-10 22:57:05 +02:00
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2021-09-13 18:44:46 +02:00
|
|
|
<tr key={"sf-all"}>
|
2021-09-10 22:57:05 +02:00
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">All:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button touch-right" onClick={setAllSF(0)}>
|
|
|
|
0
|
|
|
|
</button>
|
|
|
|
<button className="std-button touch-sides" onClick={setAllSF(1)}>
|
|
|
|
1
|
|
|
|
</button>
|
|
|
|
<button className="std-button touch-sides" onClick={setAllSF(2)}>
|
|
|
|
2
|
|
|
|
</button>
|
|
|
|
<button className="std-button touch-left" onClick={setAllSF(3)}>
|
|
|
|
3
|
2021-09-10 22:57:05 +02:00
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2021-09-13 18:44:46 +02:00
|
|
|
{validSFN.map((i) => (
|
|
|
|
<tr key={"sf-" + i}>
|
|
|
|
<td>
|
|
|
|
<span className="text">SF-{i}:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button touch-right" onClick={setSF(i, 0)}>
|
|
|
|
0
|
|
|
|
</button>
|
|
|
|
<button className="std-button touch-sides" onClick={setSF(i, 1)}>
|
|
|
|
1
|
|
|
|
</button>
|
|
|
|
<button className="std-button touch-sides" onClick={setSF(i, 2)}>
|
|
|
|
2
|
|
|
|
</button>
|
|
|
|
<button className="std-button touch-left" onClick={setSF(i, 3)}>
|
|
|
|
3
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
))}
|
2021-09-10 22:57:05 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-13 18:44:46 +02:00
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Programs</h2>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Program:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<select
|
|
|
|
id="dev-programs-dropdown"
|
|
|
|
className="dropdown"
|
|
|
|
onChange={setProgramDropdown}
|
|
|
|
value={program}
|
|
|
|
>
|
|
|
|
{programs}
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Add:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={addProgram}>One</Button>
|
|
|
|
<Button onClick={addAllPrograms}>All</Button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
2021-09-13 18:44:46 +02:00
|
|
|
<h2>Servers</h2>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Server:</span>
|
|
|
|
</td>
|
|
|
|
<td colSpan={2}>
|
|
|
|
<select id="dev-servers-dropdown" className="dropdown" onChange={setServerDropdown} value={server}>
|
|
|
|
{servers}
|
|
|
|
</select>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
2021-09-13 18:44:46 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-09-10 22:57:05 +02:00
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Root:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={rootServer}>Root one</Button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={rootAllServers}>Root all</Button>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Security:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<Button onClick={minSecurity}>Min one</Button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button onClick={minAllSecurity}>Min all</Button>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Money:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={maxMoney}>
|
|
|
|
Max one
|
|
|
|
</button>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<button className="std-button" onClick={maxAllMoney}>
|
|
|
|
Max all
|
2021-09-10 22:57:05 +02:00
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
2021-09-13 18:44:46 +02:00
|
|
|
<h2>Companies</h2>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Company:</span>
|
|
|
|
</td>
|
|
|
|
<td colSpan={3}>
|
|
|
|
<select
|
|
|
|
id="dev-companies-dropdown"
|
|
|
|
className="dropdown"
|
|
|
|
onChange={setCompanyDropdown}
|
|
|
|
value={company}
|
|
|
|
>
|
|
|
|
{companies}
|
|
|
|
</select>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
2021-09-13 18:44:46 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-09-10 22:57:05 +02:00
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Reputation:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="reputation"
|
|
|
|
add={modifyCompanyRep(1)}
|
|
|
|
subtract={modifyCompanyRep(-1)}
|
|
|
|
reset={resetCompanyRep}
|
|
|
|
/>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
2021-09-13 18:44:46 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-09-10 22:57:05 +02:00
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">Favor:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="favor"
|
|
|
|
add={modifyCompanyFavor(1)}
|
|
|
|
subtract={modifyCompanyFavor(-1)}
|
|
|
|
reset={resetCompanyFavor}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">All Reputation:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={tonsOfRepCompanies}>
|
|
|
|
Tons
|
|
|
|
</button>
|
|
|
|
<button className="std-button" onClick={resetAllRepCompanies}>
|
|
|
|
Reset
|
2021-09-10 22:57:05 +02:00
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<span className="text">All Favor:</span>
|
2021-09-10 22:57:05 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<button className="std-button" onClick={tonsOfFavorCompanies}>
|
|
|
|
Tons
|
|
|
|
</button>
|
|
|
|
<button className="std-button" onClick={resetAllFavorCompanies}>
|
|
|
|
Reset
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{props.player.bladeburner instanceof Bladeburner && (
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Bladeburner</h2>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Rank:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={addTonsBladeburnerRank}>
|
|
|
|
Tons
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="rank"
|
|
|
|
add={modifyBladeburnerRank(1)}
|
|
|
|
subtract={modifyBladeburnerRank(-1)}
|
|
|
|
reset={resetBladeburnerRank}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Cycles:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={addTonsBladeburnerCycles}>
|
|
|
|
Tons
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="cycles"
|
|
|
|
add={modifyBladeburnerCycles(1)}
|
|
|
|
subtract={modifyBladeburnerCycles(-1)}
|
|
|
|
reset={resetBladeburnerCycles}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{props.player.inGang() && (
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Gang</h2>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Cycles:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={addTonsGangCycles}>
|
|
|
|
Tons
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="cycles"
|
|
|
|
add={modifyGangCycles(1)}
|
|
|
|
subtract={modifyGangCycles(-1)}
|
|
|
|
reset={resetGangCycles}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{props.player.hasCorporation() && (
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Corporation</h2>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={addTonsCorporationFunds}>
|
|
|
|
Tons of funds
|
|
|
|
</button>
|
|
|
|
<button className="std-button" onClick={resetCorporationFunds}>
|
|
|
|
Reset funds
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Cycles:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={addTonsCorporationCycles}>
|
|
|
|
Tons
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<ValueAdjusterComponent
|
|
|
|
title="cycles"
|
|
|
|
add={modifyCorporationCycles(1)}
|
|
|
|
subtract={modifyCorporationCycles(-1)}
|
|
|
|
reset={resetCorporationCycles}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={finishCorporationProducts}>
|
|
|
|
Finish products
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={addCorporationResearch}>
|
|
|
|
Tons of research
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Coding Contracts</h2>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={generateRandomContract}>
|
|
|
|
Generate Random Contract
|
|
|
|
</button>
|
|
|
|
<button className="std-button" onClick={generateRandomContractOnHome}>
|
|
|
|
Generate Random Contract on Home Comp
|
2021-09-10 22:57:05 +02:00
|
|
|
</button>
|
|
|
|
</td>
|
2021-09-13 18:44:46 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-09-10 22:57:05 +02:00
|
|
|
<td>
|
2021-09-13 18:44:46 +02:00
|
|
|
<select
|
|
|
|
id="contract-types-dropdown"
|
|
|
|
className="dropdown"
|
|
|
|
onChange={setCodingcontractDropdown}
|
|
|
|
value={codingcontract}
|
|
|
|
>
|
|
|
|
{contractTypes}
|
|
|
|
</select>
|
|
|
|
<button className="std-button" onClick={specificContract}>
|
|
|
|
Generate Specified Contract Type on Home Comp
|
2021-09-10 22:57:05 +02:00
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-09-13 18:44:46 +02:00
|
|
|
{props.player.hasWseAccount && (
|
2021-09-10 22:57:05 +02:00
|
|
|
<div className="row">
|
2021-09-13 18:44:46 +02:00
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Stock Market</h2>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Symbol:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input
|
|
|
|
id="dev-stock-symbol"
|
|
|
|
className="text-input"
|
|
|
|
type="text"
|
|
|
|
placeholder="symbol/'all'"
|
|
|
|
onChange={setStockSymbolField}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Price:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input
|
|
|
|
id="dev-stock-price"
|
|
|
|
className="text-input"
|
|
|
|
type="number"
|
|
|
|
placeholder="$$$"
|
|
|
|
onChange={setStockPriceField}
|
|
|
|
/>
|
|
|
|
<button className="std-button" onClick={doSetStockPrice}>
|
|
|
|
Set
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Caps:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={viewStockCaps}>
|
|
|
|
View stock caps
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
2021-09-13 18:44:46 +02:00
|
|
|
)}
|
|
|
|
|
|
|
|
{props.player.sleeves.length > 0 && (
|
2021-09-10 22:57:05 +02:00
|
|
|
<div className="row">
|
2021-09-13 18:44:46 +02:00
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Sleeves</h2>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Shock:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={sleeveMaxAllShock}>
|
|
|
|
Max all
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={sleeveClearAllShock}>
|
|
|
|
Clear all
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span className="text">Sync:</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={sleeveSyncMaxAll}>
|
|
|
|
Max all
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button className="std-button" onClick={sleeveSyncClearAll}>
|
|
|
|
Clear all
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<div className="row">
|
|
|
|
<div className="col">
|
|
|
|
<div className="row">
|
|
|
|
<h2>Offline time skip:</h2>
|
|
|
|
</div>
|
|
|
|
<div className="row">
|
|
|
|
<button className="std-button" onClick={timeskip(60 * 1000)}>
|
|
|
|
1 minute
|
|
|
|
</button>
|
|
|
|
<button className="std-button" onClick={timeskip(60 * 60 * 1000)}>
|
|
|
|
1 hour
|
|
|
|
</button>
|
|
|
|
<button className="std-button" onClick={timeskip(24 * 60 * 60 * 1000)}>
|
|
|
|
1 day
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-09-10 22:57:05 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-13 18:44:46 +02:00
|
|
|
</Theme>
|
2021-09-10 22:57:05 +02:00
|
|
|
);
|
|
|
|
}
|