Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 60 additions & 3 deletions BetterMint/html/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>

<head>
<title>Mint V2 Internal</title>
<title>Mint V2.0</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Exo 2">
<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="../css/options.css">
Expand Down Expand Up @@ -224,7 +224,7 @@
<body>
<div class="header-logo">
<img src="../img/betterlogo.png">
<span class="title">Mint V2 Internal</span>
<span class="title">Mint V2.0 Internal</span>
<?xml version="1.0" encoding="utf-8"?>
<svg id="popoutb" viewbox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
<path
Expand Down Expand Up @@ -344,6 +344,34 @@ <h1 style="text-align: center; font-size: 20px;">Misc</h1>
</div>
</label>
</div>
<div class="options-checkbox">
<input id="option-notifications" type="checkbox" />
<label for="option-notifications">Notifications
<div class="tooltip">
<span class="material-icons" style="color: #777777; font-size: 20px !important;">help</span>
<span class="tooltiptext">Enable or disable on-screen toast notifications.</span>
</div>
</label>
</div>

<div class="options-checkbox">
<input id="option-instant-premove" type="checkbox" />
<label for="option-instant-premove">Instant Premove
<div class="tooltip">
<span class="material-icons" style="color:#777777;font-size:20px!important;">help</span>
<span class="tooltiptext">Press the key to arm; the next move is played instantly (0 sec).</span>
</div>
</label>
</div>
<div class="options-slider" style="margin-bottom:30px;">
<div class="title" style="text-transform: uppercase; font-weight:bold;">Activation Key:</div>
<input id="option-instant-premove-key" type="text" maxlength="1" style="width: 60px; padding: 6px 8px; color: white; background-color: #3a3a3d; border-radius:4px; border: 1px solid #555; text-align:center;" />
</div>

<div class="options-checkbox">
<input id="option-auto-queue" type="checkbox" />
<label for="option-auto-queue">Auto Queue</label>
</div>
<div class="options-checkbox">
<input id="option-highmatechance" type="checkbox" />
<label for="option-highmatechance">Mate Finder
Expand Down Expand Up @@ -375,6 +403,20 @@ <h1 style="text-align: center; font-size: 20px;">Auto-Move Options</h1>
</label>
</div>

<div class="options-checkbox">
<input id="option-fast-opening-moves" type="checkbox" />
<label for="option-fast-opening-moves">Fast Opening Moves
<div class="tooltip">
<span class="material-icons" style="color: #777777; font-size: 20px !important;">help</span>
<span class="tooltiptext">Play opening moves faster to save time.</span>
</div>
</label>
</div>
<div class="options-slider" data-min="1" data-max="100">
<div class="title">Opening Move Speed (% Faster):</div>
<input id="option-fast-opening-speed" type="range" value="50" />
</div>

<div class="options-checkbox">
<input id="option-random-best-move" type="checkbox" />
<label for="option-random-best-move">Random Best Move
Expand All @@ -390,6 +432,21 @@ <h1 style="text-align: center; font-size: 20px;">Auto-Move Options</h1>
<input id="option-best-move-chance" type="range" value="30" />
</div>

<!-- Panic Mode (requires Auto Move) -->
<div class="options-checkbox">
<input id="option-panic-mode" type="checkbox" />
<label for="option-panic-mode">Panic Mode (requires Auto Move)
<div class="tooltip">
<span class="material-icons" style="color: #777777; font-size: 20px !important;">help</span>
<span class="tooltiptext">Simulates the final seconds of a game by instantly playing depth-1 moves (0–0.6 s) to win on time.</span>
</div>
</label>
</div>
<div class="options-slider" data-min="1" data-max="60">
<div class="title">Panic Threshold (seconds):</div>
<input id="option-panic-time" type="range" value="10" />
</div>

<div class=" options-slider" data-min="-30000" data-max="30000">
<div class="title">Auto Move Delay:</div>
<input id="option-auto-move-time" type="range" value="5000" />
Expand Down Expand Up @@ -558,7 +615,7 @@ <h1>Features (not updated)</h1>
<div class="privateicon"><span>Public</span></div>
</div>
<br>
<span class="credits">by BetterMint, HotaVN, lucaskvasirr, Webcubed, & thedemons</span>
<span class="credits">by BetterMint, HotaVN, lucaskvasirr, Webcubed, & thedemons. Updated by .baconater69.</span>
<br>
</body>

Expand Down
Loading