-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (84 loc) · 3.95 KB
/
index.html
File metadata and controls
92 lines (84 loc) · 3.95 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="src/map.js"></script>
<script src="src/transforms.js"></script>
<script src="src/buttons.js"></script>
<script src="src/importExport.js"></script>
<script src="src/requests.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QF1HKWZ5ZQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QF1HKWZ5ZQ');
</script>
<body>
<div class="completeDiv" id="superParent">
<div class="imgDiv" id="imgDiv">
<img class="overlay" id="overlay" src="images/grid overlay.png">
<img class="map" id="map" src="images/osrs_world_map_may20_2019.png">
<div class="btnDiv" id="btnDiv">
</div>
</div>
<div class="sidebarLeft" id="sidebarLeft">
<div class="controls" id="controls">
<h2 style="margin: 0px">OSRS Chunk Picker</h2>
<button class="picker" onclick="pickPotentialChunk()">Pick a random potential chunk!</button>
<button class="picker" onclick="centerOnUnlockedTiles()">Center on unlocked tiles</button>
<div style="margin: 10px; line-height: 20px">
<label class="checkLabel">
<input type="checkbox" id="selectNewNeighbors" onclick="disableOtherCheckbox(this)">
Mark new neighbors as potential after rolling.
</label></br>
<label class="checkLabel">
<input type="checkbox" id="removePotential" onclick="disableOtherCheckbox(this)">
Remove potential chunks after rolling.
</label>
</div>
</div>
<div class="importExport" id="importExport">
<h2 style="margin: 0px">Import/Export</h2>
<button class="picker" id="importButton" onclick="document.getElementById('select').click()">Import</button>
<input type="file" id="select" style="display:none" onchange="JSONToChunks()" accept="text/plain">
<button class="picker" id="exportButton" onclick="chunksToJSON()">Export</button>
<button class="picker" id="urlButton" onclick="encodeGet()">Generate and copy URL</button>
</div>
</div>
<div class="arrowLeftBackground" id="arrowLeftBackground">
<div class="arrowLeft" id="arrowLeft" onclick="toggleSidebar(this.id, 'sidebarLeft')">
</div>
</div>
<div class="sidebarRight" id="sidebarRight">
<div class="updateBox" id="updateBox">
<h2 style="margin: 0px">New Website</h2>
<p style="margin: 0px 0px 20px 0px; line-height: 20px">Made by: Source Chunk</p>
<a href="https://source-chunk.github.io/chunk-picker-v2/" title="New Picker" style="margin: 0px 0px 20px 0px; line-height: 10px">Chunk Picker V2</a>
</div>
<div class="aboutBox" id="aboutBox">
<h2 style="margin: 0px">About</h2>
<p style="margin: 0px 0px 20px 0px; line-height: 20px">Made by: Amehzyn</p>
<a href="https://discord.gg/8vQu9xU" title="Pookaguy's ChunkManMode Discord">
<img src="images/Discord-Logo-Color.png" style="width:25%"></a>
<a href="https://github.com/GitGeddes/ChunkPicker" title="Source Code">
<img src="images/GitHub-Mark-64px.png" style="width:25%">
</a>
<p style="margin: 0px; line-height: 20px">Contact me through Discord @Amehzyn
</br> Please send me suggestions to improve the site!
</p>
<p style="margin: 20px 0px 10px 0px; line-height: 20px">The Old School RuneScape game and world map are copyright © Jagex Games Ltd.</p>
<p style="margin: 10px; line-height: 20px">This website is not affiliated with Jagex Games Ltd.</p>
</div>
</div>
<div class="arrowRightBackground" id="arrowRightBackground">
<div class="arrowRight" id="arrowRight" onclick="toggleSidebar(this.id, 'sidebarRight')">
</div>
</div>
</div>
</body>
</html>