-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (57 loc) · 2.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Geode AFK Spot Finder</title>
<link rel="stylesheet" href="style/[email protected]">
<link rel="stylesheet" href="style/[email protected]">
</head>
<body>
<section class="main">
<h1>Geode AFK Spot Finder</h1>
<p>Finds the spot with the most budding amethyst blocks in range.</p>
<div>
<div id="step-1-balloon" class="nes-balloon from-left">
Load all .mca files in your world's region folder.
<p>
<label id="region-files-container" class="nes-btn file-select">
<span>Select your files</span>
<input id="region-files" type="file" multiple>
</label>
<button id="sample" class="nes-btn">Load Sample</button>
</p>
<small>Your files are never uploaded — everything is processed in your browser.</small>
</div>
</div>
<div id="step-1-response" class="step hidden">
<div id="step-1-response-balloon" style="float:right;" class="nes-balloon from-right">
</div>
</div>
<div id="step-2" class="step hidden">
<div class="nes-balloon from-left" style="width: 100%">
<div id="afk-spot-log"></div>
<div style="white-space: pre-wrap;" id="map-label"></div>
<canvas id="map" width="512" height="512"></canvas>
</div>
</div>
</section>
<footer>
<div class="nes-container with-title">
<p class="title">Other tools</p>
<p>
<a href="index.html">geode</a>
— <a href="afk.html">afk</a>
— <a href="drowned.html">drowned</a>
</p>
</div>
</footer>
<script type="application/russellsprouts-worker"
data-name="general"
<script type="text/javascript" src="third_party/three.js/[email protected]"></script>
<script type="text/javascript" src="third_party/pako/[email protected]"></script>
<script type="text/javascript" src="out/[email protected]"></script>
<script type="text/javascript" src="out/[email protected]"></script>
<script type="text/javascript" src="out/[email protected]"></script>
</body>
</html>