Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issues, tidy code #75

Closed
wants to merge 14 commits into from
9 changes: 0 additions & 9 deletions help.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,20 +123,11 @@ <h3 id="Advanced_Mode">Advanced Mode</h3>
the True Lab. Finally, flag <code>7</code> (accessible in the basic menu)
activates the post-Asriel epilogue.
</li>
<li>
Flags <code>300-324</code> contain the contents of your Dimensional Boxes.
If you want to hack in more than eight items, use these.
</li>
<li>
Flags <code>130-156</code> control a great many of the yellow credits for
sparing enemies in the right way. If you want an all-yellow-credits run
(or to analyze one), look here first.
</li>
<li>
The status of your keychain is contained in flags. Asgore's keys are
flags <code>452-454</code>; True Lab keys are flags <code>481-484</code>;
and Sans's room keys are flag <code>497</code>.
</li>
</ul>
</body>
</html>
75 changes: 75 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ <h1>Persistent Data (undertale.ini)</h1>
>Trapped in Flowey's World</label
>
</div>
<button id="sav-savefile8" class="hidden" title="This file is used to persist your save data after the Omega Flowey fight.">
<img src="res/star.png" /><span>FILE8</span>
</button>
<div class="checkbox" style="margin-top: -1px">
<input id="ini-dodged-all-special-thanks" type="checkbox" />
<label for="ini-dodged-all-special-thanks">Dodged special thanks</label>
Expand Down Expand Up @@ -407,6 +410,77 @@ <h1>SAVE Data (file0)</h1>
</div>
</fieldset>
</div>

<fieldset>
<legend>Keychain</legend>
<div class="grid-cols-2">
<label for="sav-asgkey1" class="mt-1.5">Kitchen key</label>
<select id="sav-asgkey1" class="mt-1.5"></select>
<label for="sav-asgkey2" class="mt-1.5">Bedroom key</label>
<select id="sav-asgkey2" class="mt-1.5"></select>
<label for="sav-sanskey" class="mt-1.5">Sans's keys</label>
<select id="sav-sanskey" class="mt-1.5"></select>
<label for="sav-redkey" class="mt-1.5">Red key</label>
<select id="sav-redkey" class="mt-1.5"></select>
<label for="sav-blukey" class="mt-1.5">Blue key</label>
<select id="sav-blukey" class="mt-1.5"></select>
<label for="sav-grnkey" class="mt-1.5">Green key</label>
<select id="sav-grnkey" class="mt-1.5"></select>
<label for="sav-ylwkey" class="mt-1.5">Yellow key</label>
<select id="sav-ylwkey" class="mt-1.5"></select>
</div>
</fieldset>

<fieldset>
<legend>Dimensional Box A</legend>
<div class="grid-cols-2">
<label for="sav-boxa1">SLOT 1</label>
<label for="sav-boxa2">SLOT 2</label>
<select id="sav-boxa1"></select>
<select id="sav-boxa2"></select>
<label for="sav-boxa3">SLOT 3</label>
<label for="sav-boxa4">SLOT 4</label>
<select id="sav-boxa3"></select>
<select id="sav-boxa4"></select>
<label for="sav-boxa5">SLOT 5</label>
<label for="sav-boxa6">SLOT 6</label>
<select id="sav-boxa5"></select>
<select id="sav-boxa6"></select>
<label for="sav-boxa7">SLOT 7</label>
<label for="sav-boxa8">SLOT 8</label>
<select id="sav-boxa7"></select>
<select id="sav-boxa8"></select>
<label for="sav-boxa9">SLOT 9</label>
<label for="sav-boxa10">SLOT 10</label>
<select id="sav-boxa9"></select>
<select id="sav-boxa10"></select>
</div>
</fieldset>
<fieldset>
<legend>Dimensional Box B</legend>
<div class="grid-cols-2">
<label for="sav-boxb1">SLOT 1</label>
<label for="sav-boxb2">SLOT 2</label>
<select id="sav-boxb1"></select>
<select id="sav-boxb2"></select>
<label for="sav-boxb3">SLOT 3</label>
<label for="sav-boxb4">SLOT 4</label>
<select id="sav-boxb3"></select>
<select id="sav-boxb4"></select>
<label for="sav-boxb5">SLOT 5</label>
<label for="sav-boxb6">SLOT 6</label>
<select id="sav-boxb5"></select>
<select id="sav-boxb6"></select>
<label for="sav-boxb7">SLOT 7</label>
<label for="sav-boxb8">SLOT 8</label>
<select id="sav-boxb7"></select>
<select id="sav-boxb8"></select>
<label for="sav-boxb9">SLOT 9</label>
<label for="sav-boxb10">SLOT 10</label>
<select id="sav-boxb9"></select>
<select id="sav-boxb10"></select>
</div>
</fieldset>

<fieldset>
<legend>Other</legend>
Expand Down Expand Up @@ -487,6 +561,7 @@ <h1>SAVE Data (file0)</h1>
</table>
</div>
</fieldset>

<fieldset class="col-span-3">
<legend>Advanced</legend>
<fieldset class="grid-cols-3" style="top: 3px; position: sticky;">
Expand Down
Loading