mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 23:08:36 +02:00
MISC: Clarify advanced options (#1962)
This commit is contained in:
@@ -354,6 +354,11 @@ export function BitNodeAdvancedOptions({
|
|||||||
</ListItemButton>
|
</ListItemButton>
|
||||||
<Collapse in={open}>
|
<Collapse in={open}>
|
||||||
<Box sx={{ padding: "0 1rem" }}>
|
<Box sx={{ padding: "0 1rem" }}>
|
||||||
|
<Typography>
|
||||||
|
These options enable unique gameplay that is intended for experienced players. If you are a new player, you
|
||||||
|
can safely ignore these options and come back to try them later.
|
||||||
|
</Typography>
|
||||||
|
<br />
|
||||||
<OptionSwitch
|
<OptionSwitch
|
||||||
checked={bitNodeBooleanOptions.restrictHomePCUpgrade}
|
checked={bitNodeBooleanOptions.restrictHomePCUpgrade}
|
||||||
onChange={(value) => {
|
onChange={(value) => {
|
||||||
@@ -369,7 +374,7 @@ export function BitNodeAdvancedOptions({
|
|||||||
callbacks.setBooleanOption("disableGang", value);
|
callbacks.setBooleanOption("disableGang", value);
|
||||||
}}
|
}}
|
||||||
text="Disable Gang"
|
text="Disable Gang"
|
||||||
tooltip="Disable Gang"
|
tooltip="Disable Gang, regardless of BitNode and SF level"
|
||||||
/>
|
/>
|
||||||
<OptionSwitch
|
<OptionSwitch
|
||||||
disabled={getSfLevel(3) === 0 && targetBitNode !== 3}
|
disabled={getSfLevel(3) === 0 && targetBitNode !== 3}
|
||||||
@@ -378,7 +383,7 @@ export function BitNodeAdvancedOptions({
|
|||||||
callbacks.setBooleanOption("disableCorporation", value);
|
callbacks.setBooleanOption("disableCorporation", value);
|
||||||
}}
|
}}
|
||||||
text="Disable Corporation"
|
text="Disable Corporation"
|
||||||
tooltip="Disable Corporation"
|
tooltip="Disable Corporation, regardless of BitNode and SF level"
|
||||||
/>
|
/>
|
||||||
<OptionSwitch
|
<OptionSwitch
|
||||||
disabled={getSfLevel(6) === 0 && getSfLevel(7) === 0 && targetBitNode !== 6 && targetBitNode !== 7}
|
disabled={getSfLevel(6) === 0 && getSfLevel(7) === 0 && targetBitNode !== 6 && targetBitNode !== 7}
|
||||||
@@ -387,7 +392,7 @@ export function BitNodeAdvancedOptions({
|
|||||||
callbacks.setBooleanOption("disableBladeburner", value);
|
callbacks.setBooleanOption("disableBladeburner", value);
|
||||||
}}
|
}}
|
||||||
text="Disable Bladeburner"
|
text="Disable Bladeburner"
|
||||||
tooltip="Disable Bladeburner"
|
tooltip="Disable Bladeburner, regardless of BitNode and SF level"
|
||||||
/>
|
/>
|
||||||
<OptionSwitch
|
<OptionSwitch
|
||||||
checked={bitNodeBooleanOptions.disable4SData}
|
checked={bitNodeBooleanOptions.disable4SData}
|
||||||
@@ -395,7 +400,7 @@ export function BitNodeAdvancedOptions({
|
|||||||
callbacks.setBooleanOption("disable4SData", value);
|
callbacks.setBooleanOption("disable4SData", value);
|
||||||
}}
|
}}
|
||||||
text="Disable 4S Market Data"
|
text="Disable 4S Market Data"
|
||||||
tooltip="Disable 4S Market Data"
|
tooltip="Disable 4S Market Data, regardless of BitNode and SF level"
|
||||||
/>
|
/>
|
||||||
<OptionSwitch
|
<OptionSwitch
|
||||||
disabled={getSfLevel(9) === 0 && targetBitNode !== 9}
|
disabled={getSfLevel(9) === 0 && targetBitNode !== 9}
|
||||||
@@ -404,7 +409,7 @@ export function BitNodeAdvancedOptions({
|
|||||||
callbacks.setBooleanOption("disableHacknetServer", value);
|
callbacks.setBooleanOption("disableHacknetServer", value);
|
||||||
}}
|
}}
|
||||||
text="Disable Hacknet Server"
|
text="Disable Hacknet Server"
|
||||||
tooltip="Hacknet Node is re-enabled in place of Hacknet Server."
|
tooltip="Disable Hacknet Server, regardless of BitNode and SF level. Hacknet Node is re-enabled in place of Hacknet Server."
|
||||||
/>
|
/>
|
||||||
<OptionSwitch
|
<OptionSwitch
|
||||||
disabled={getSfLevel(10) === 0 && targetBitNode !== 10}
|
disabled={getSfLevel(10) === 0 && targetBitNode !== 10}
|
||||||
|
|||||||
Reference in New Issue
Block a user