-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (51 loc) · 2.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Mate+SC&display=swap" rel="stylesheet">
<title>FF8 Formation Calculator</title>
</head>
<body>
<h1>Encounter Formation Calculator</h1>
<legend>Previous Encounter Number:</legend>
<input type="number" id="prev-enc-number" min="0" step="1">
<legend>Advanced:</legend>
<input type="checkbox" id="advanced">
<span id="advancedOptions" style="display: none">
<legend>Map ID:</legend>
<select id="map-id"></select>
<legend>Previous Encounter Formation:</legend>
<select id="prev-enc-formation"></select>
<legend>Offset value:</legend>
<input type="number" id="offset" value="0" step="13">
<button id="increment">Increment</button>
</span>
<div id="results"></div>
<footer>
<h2>Information</h2>
<p>Using the previous encounter formation ID along with the encounter number (total number of encounters) we can
tell which encounter formation we will receive next.</p>
<h3>Addresses for French 2013 PC</h3>
<p>Encounter Number Address: FF8_FR.exe+18DBCC4</p>
<p>Previous Encounter Address: FF8_FR.exe+1996A80</p>
<hr>
<legend>Useful Map IDs</legend>
<input type="checkbox" id="usefulMaps">
<span id="extraMaps" style="display: none">
<ul>
<li>Esthar Stairs Screen: 402</li>
<li>Esthar Boarding Screen: 425</li>
<li>Esthar Odines Lab Entrance: 434</li>
</ul>
</span>
<h3>Created by awesomeWaves & Brofar</h3>
</footer>
<script src="js/encounters.json"></script>
<script src="js/formations.json"></script>
<script src="js/maps.json"></script>
<script src="js/encounter_formation.js"></script>
</html>