-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cooking.html
77 lines (72 loc) · 3.26 KB
/
cooking.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cooking</title>
<meta name="description" content="A Cooking 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 Cooking Calculator">
<meta property="og:type" content="website">
<meta property="og:description" content="A Cooking 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="cooking.js"></script>
</head>
<body>
<div id="navbararea"></div><br>
<h2>Cooking</h2>
<label for="enchantLevel">Enchantment</label>
<select name="enchantLevel" id="enchantLevel">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<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>
<label for="single">Force Single Craft</label>
<input type="checkbox" name="single" id="single" checked>
<br>
<label for="locations">Start 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="endLocations">End City</label>
<select name="endLocations" id="endLocations">
<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>
<option value="Arthurs Rest">Arthur's Rest</option>
<option value="Merlyns Rest">Merlyn's Rest</option>
<option value="Morganas Rest">Morgana's Rest</option>
</select>
<label for="rrr">Resource Return Rate</label>
<input type="number" step="0.001" name="rrr" id="rrr" min=0 max=1 value="0.152">
<label for="nutri">Nutrition Cost</label>
<input type="number" name="nutri" id="nutri" min=0 max=9999 value="500">
<label for="prem">Premium</label>
<input type="checkbox" name="prem" id="prem" checked>
<button id="updateButton" onclick="updateTable()">Update</button>
<button onclick="hideUnprofitable()">Hide Unprofitable</button>
<div id="tablearea" style="overflow:auto;"></div>
</body>
</html>