-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
123 lines (100 loc) · 5.57 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-146791562-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-146791562-1');
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="index.css">
<script src="index.js?version=2.1"></script>
</head>
<body>
<h1>Remnant: From the Ashes World Analyzer</h1>
<p>
How to use:<br>
Navigate to %LOCALAPPDATA%/Remnant/Saved/SaveGames and locate the file named something like save_0.bak or save_0.sav. Upload to see what you rolled.<br><br>
For Adventure Mode, make sure to use the right side filters to filter by the selected world. Worlds other than what you chose should be ignored as they are just past rolls for those worlds. There is currently no way to determine which world was chosen in adventure mode so the tool lists all of them.
<br><br>
Known Issues:<br>
Adventure mode seems to not be working correctly, currently working on a fix.<br>
Ad block can mess with the tool functionality.<br>
<b>You must use the red crystal to travel to the location before the world can be analyzed.<b>
<br><br>
Credits to /u/FAOAB on reddit for this <a href="https://docs.google.com/spreadsheets/d/1VzmDx0ZXQWN5N_9_zP0gEqToyuB9ZjlxgZOEGdiuA6A/edit#gid=2123178902" style='color:white;'> spreadsheet</a> that helped me sort out some of the more confusing names.
<br><br>
</p>
<div id="drop-area">
<input type="file" onchange="loadFile(this)">
<p style="text-align: center; font-size:25px;">Choose or drop file</p>
</div>
<div id="filters">
<button id="toggle-adv">Show Adventure Mode</button>
<br />
<div id="select-filters">
<fieldset>
<legend>Regions:</legend>
<label><input type="checkbox" id="f-earth" class="filter" checked>Earth</label>
<label><input type="checkbox" id="f-rhom" class="filter" checked>Rhom</label>
<label><input type="checkbox" id="f-corsus" class="filter" checked>Corsus</label>
<label><input type="checkbox" id="f-yaesha" class="filter" checked>Yaesha</label>
<label><input type="checkbox" id="f-reisum" class="filter" checked>Reisum</label>
</fieldset>
<br/>
<fieldset>
<legend>Type:</legend>
<label><input type="checkbox" id="f-items" class="filter" checked>Items</label>
<label><input type="checkbox" id="f-sidedgs" class="filter" checked>Side Dungeons</label>
<label><input type="checkbox" id="f-sieges" class="filter" checked>Sieges</label>
<label><input type="checkbox" id="f-poi" class="filter" checked>Points of Interest</label>
<label><input type="checkbox" id="f-minibosses" class="filter" checked>Mini Bosses</label>
<label><input type="checkbox" id="f-bosses" class="filter" checked>Bosses</label>
</fieldset>
<br/>
<fieldset>
<legend>Name filter:</legend>
<label><input type="text" id="f-name" class="filter" placeholder="Input event name filter"></label><button class="clear-button" onclick="document.getElementById('f-name').value=''">X</button>
</fieldset>
<br/>
<button class="half-button" onclick="updateFilters(false)">Hide all</button> <button class="half-button" onclick="updateFilters(true)">Show all</button>
<br/>
<button id="apply">Apply</button>
</div>
</div>
<table class="piece-table main-mode" style="display:none;">
<thead>
<tr class="header-row">
<th class="headerSort" tabindex="0" role="columnheader button">Location
</th>
<th class="headerSort" tabindex="0" role="columnheader button">Event Type
</th>
<th class="headerSort" tabindex="0" role="columnheader button">Event Name
</th>
</tr>
</thead>
<tbody id="main">
</tbody>
<tfoot></tfoot>
</table>
<table class="piece-table adventure-mode">
<thead>
<tr class="header-row">
<th class="headerSort" tabindex="0" role="columnheader button">Location
</th>
<th class="headerSort" tabindex="0" role="columnheader button">Event Type
</th>
<th class="headerSort" tabindex="0" role="columnheader button">Event Name
</th>
</tr>
</thead>
<tbody id="adventure">
</tbody>
<tfoot></tfoot>
</table>
</body>
</html>