-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (82 loc) · 4.04 KB
/
index.html
File metadata and controls
85 lines (82 loc) · 4.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Auction Manipulation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="parameters">
<div class="input-group tooltip">
<label for="maxItems">Max Items:</label>
<input type="number" id="maxItems" min="0" value="45">
<span class="tooltip-text">Total items you are willing to purchase.</span>
</div>
<div class="input-group tooltip">
<label for="minItems">Min Items:</label>
<input type="number" id="minItems" min="0" value="6" >
<span class="tooltip-text">Minimum amount of items you are willing to purchase.</span>
</div>
<div class="input-group tooltip">
<label for="maxBuyIn">Max Buy In:</label>
<input type="number" id="maxBuyIn" min="0" value="15000000">
<span class="tooltip-text">Total coins you are willing to spend.</span>
</div>
<div class="input-group tooltip">
<label for="minMultiplier">Min Multiplier:</label>
<input type="number" id="minMultiplier" min="0" value="15">
<span class="tooltip-text">Minimum multiplier on the lowest price to the new price (only for roofed manipulations).</span>
</div>
<div class="input-group tooltip">
<label for="minFlat">Min Flat:</label>
<input type="number" id="minFlat" min="0" value="7000000">
<span class="tooltip-text">The minimum for the new price of the item (only for roofed manipulations).</span>
</div>
<div class="input-group tooltip">
<label for="maxFirstPrice">Max First Price:</label>
<input type="number" id="maxFirstPrice" min="0" value="2000000">
<span class="tooltip-text">Highest price willing to pay for the first item.</span>
</div>
<div class="input-group tooltip">
<label for="minFirstPrice">Min First Price:</label>
<input type="number" id="minFirstPrice" min="0" value="50000">
<span class="tooltip-text">Minimum price willing to pay for the first item.</span>
</div>
<div class="input-group checkbox-group tooltip">
<input type="checkbox" id="hideDungeonItems" checked>
<label for="hideDungeonItems" title="Hide Dungeon Items">Hide Dungeon Items</label>
<span class="tooltip-text">Hide dungeon items (can be easy to obtain).</span>
</div>
<div class="input-group checkbox-group tooltip">
<input type="checkbox" id="hideDragonItems" checked>
<label for="hideDragonItems" title="Hide Dragon Items">Hide Dragon Items</label>
<span class="tooltip-text">Hide dragon items (often craftable).</span>
</div>
<div class="input-group checkbox-group tooltip">
<input type="checkbox" id="hidePetSkins" checked>
<label for="hidePetSkins" title="Hide Pet Skins">Hide Pet Skins</label>
<span class="tooltip-text">Hide pet skins (often known to be manipulated).</span>
</div>
<div class="input-group checkbox-group tooltip">
<input type="checkbox" id="hideFurniture" checked>
<label for="hideFurniture" title="Hide Furniture">Hide Furniture</label>
<span class="tooltip-text">Hide furniture (often known to be manipulated and worthless).</span>
</div>
<div class="input-group">
<button id="submitButton">Submit</button>
</div>
<div class="input-group">
<h2>Warning Items Could Be Craftable</h5>
</div>
</div>
<div class="widget-container" id="roof">
</div>
<div class="widget-container" id="no-roof">
</div>
<script src="./main.js"></script>
</body>
</html>