-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (105 loc) · 4.65 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>Set Hunt Train Flags</title>
<script src="index.js"></script>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div id="titlebanner">FFXIV Hunt Conductor Helper</div>
<br />
<div id="changelog">
<div id="changelog-header">CHANGE LOG</div>
<div id="changelog-contents">
<img src="https://img.shields.io/github/v/release/wexxlee/conductor-helper" />
<img src="https://img.shields.io/github/release-date/wexxlee/conductor-helper" />
<ul>
<li>v0.2.1: Now supports <a href="https://scout.wobbuffet.net/">Turtle Scout</a></li>
<li>v0.2: Added option to echo mark names on the same chat line as the mark flag</li>
<li>v0.2: Added option to customize the number of output lines per macro</li>
</ul>
</li>
</div>
</div>
<div id="info">
<a href="https://github.com/wexxlee/conductor-helper/blob/main/README.md">Read Me/Instructions</a> |
<a href="https://github.com/wexxlee/conductor-helper/issues">Report Issues & Request Features</a>
</div>
<table>
<tr>
<td>
<fieldset>
<legend>Train Name:</legend>
<div>
<input type="text" id="trainName" placeholder="My Train" />
</div>
</fieldset>
<br />
<fieldset>
<legend>Train Scouting Tool:</legend>
<div>
<input type="radio" id="siren" name="tool" value="siren" />
<label for="siren">Siren Hunts</label>
<input type="radio" id="prime" name="tool" value="prime" />
<label for="prime">Prime Hunts</label>
<input type="radio" id="bear" name="tool" value="bear" />
<label for="bear">Bear Tracker</label>
<input type="radio" id="turtle" name="tool" value="turtle" />
<label for="bear">Turtle Scout</label>
</div>
</fieldset>
<br />
<fieldset>
<legend>Options</legend>
<div>
<input type="checkbox" id="echoMarksAndFlags" />
<label for="echoMarksAndFlags">Echo mark names with flags</label>
<br />
<div id="warn"><b>NOTE:</b> If you do not want duplicated flags,
change ChatCoordinates' "General Chat Channel" to "Say" (or something else
that doesn't show in your echo log.).</div>
<br />
<input type="checkbox" id="includeZoneName" />
<label for="includeZoneName">Add zone name headers to macro</label>
<br />
<input type="checkbox" id="includeMarkName" />
<label for="includeMarkName">Add mark name headers to macro</label>
<br />
<br />
Lines per macro:
<select id="linesPerMacro">
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15" selected>15</option>
</select>
<br />
<small>(in case you want to add stuff before running it)</small>
</div>
</fieldset>
<fieldset>
<legend>Scouting Report</legend>
<div>
<textarea id="marks"></textarea>
<label for="marks"></label>
</div>
</fieldset>
<br />
<div id="buttons">
<input id="showBtn" type="button" value="Show Macro" onclick="generateMacro()" />
</div>
</td>
<td class="max">
<div class="outputbar" id="errorHeader">Errors</div>
<div id="errorText"> </div>
<br />
<div class="outputbar" id="macroHeader">Macros</div>
<div id="macroContainer"> </div>
</td>
</tr>
</table>
</body>
</html>