-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
farm.html
60 lines (55 loc) · 2.46 KB
/
farm.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Farm</title>
<meta name="description" content="A Farming calculator for the game Albion Online. Automatically calculates profit using prices from The Albion Online Data Project and user input.">
<meta name="author" content="Jacca">
<meta property="og:title" content="Albion Online Farming Calculator">
<meta property="og:type" content="website">
<meta property="og:description" content="A Farming calculator for the game Albion Online. Automatically calculates profit using prices from The Albion Online Data Project and user input.">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="table.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="recipetable.js"></script>
<script src="names.js"></script>
<script src="adt.js"></script>
<script src="farmobject.js"></script>
<script src="farm.js"></script>
</head>
<body>
<style type="text/css">.quality,.enchantLevel,.enchant,.baseyield,.focusyield{display: none;}</style>
<div id="navbararea"></div><br>
<h2>Farm</h2>
<label for="server">Server</label>
<select name="server" id="server">
<option value="west">America</option>
<option value="east">Asia</option>
<option value="europe">EU</option>
</select>
<br>
<label for="category">Category</label>
<select name="category" id="category">
<option value="0">Crops & Animal Products</option>
<option value="1">Livestock & Mounts</option>
</select>
<label for="locations">City</label>
<select name="locations" id="locations">
<option value="Thetford">Thetford</option>
<option value="Martlock">Martlock</option>
<option value="Fort Sterling">Fort Sterling</option>
<option value="Bridgewatch">Bridgewatch</option>
<option value="Lymhurst">Lymhurst</option>
<option value="Caerleon">Caerleon</option>
<option value="Brecilien">Brecilien</option>
</select>
<label for="focus">Focus</label>
<input type="checkbox" name="focus" id="focus">
<label for="citybonus">City Bonus</label>
<input type="checkbox" name="citybonus" id="citybonus">
<button id="updateButton" onclick="updateTable()">Update</button>
<button onclick="hideUnprofitable()">Hide Unprofitable</button>
<div id="tablearea" style="overflow:auto;"></div>
</body>
</html>