-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx.html
160 lines (158 loc) · 7.25 KB
/
x.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<div class="card">
<div class="card-body">
<div class="container mt-5">
<div class="row">
<div class="col-12">
<form class="pb-5">
<h1 style="color: red">
สถานะ : <span id="status"></span>
</h1>
<h2 style="color: gold">
ความไวตอนนี้ :
<span id="speed"></span> มิลลิวินาที
</h2>
<div class="form-group">
<label for="inputms">ความไว</label>
<input
type="number"
class="form-control"
id="inputms"
placeholder="ใส่ความไว 1000 = 1 วิ"
/>
</div>
<button
type="button"
class="btn"
style="background-color: dodgerblue"
onclick="updatex()"
>
อัพเดทตั้งค่า (Q)
</button>
<button
type="button"
class="btn"
style="background-color: green"
onclick="onx()"
>
เปิด (W)
</button>
<button
type="button"
class="btn"
style="background-color: red"
onclick="offx()"
>
ปิด (E)
</button>
<div class="form-group" id="give">
<br />
<label>Give Me</label>
<input
type="text"
class="form-control"
id="inputItem"
placeholder="item name"
/>
<label>Browser Select</label>
<select class="browser-default" id="selx">
<option value="no" selected>
Choose your item
</option>
<option>black_money</option>
<option>AED</option>
<option>bottle</option>
<option>Cablewire</option>
<option>cement</option>
<option>diamond_blue</option>
<option>exp10</option>
<option>exp20</option>
<option>exp5</option>
<option>fixkit</option>
<option>gang222</option>
<option>Gem_Blue_Sapphire</option>
<option>Gem_Emerald</option>
<option>Gem_Ruby</option>
<option>Gem_Yellow_Sapphire</option>
<option>giantcoin</option>
<option>gold_bar</option>
<option>hardruby</option>
<option>hardsteel</option>
<option>herp_heal</option>
<option>knife_handle</option>
<option>kubcoin</option>
<option>package_pistol</option>
<option>radio</option>
<option>ruby</option>
<option>stone_diamond</option>
<option>stone_gold</option>
<option>toolchest</option>
<option>toolchest2</option>
<option>toolchest3</option>
<option>unluckycoin</option>
<option>woodc</option>
<option>woodd</option>
</select>
<label>amount</label>
<input
type="number"
class="form-control"
id="inputamount"
placeholder="1000"
/>
<button
type="button"
class="btn"
style="background-color: green"
onclick="givex()"
>
Do It!
</button>
<button
type="button"
class="btn"
style="background-color: blue"
onclick="closex()"
>
Close Give Me
</button>
</div>
<div class="form-group" id="dev">
<br />
<label for="code">JS Code</label>
<textarea
class="form-control"
id="code"
rows="3"
style="margin: 0px; height: 262px; width: 736px"
></textarea>
<button
type="button"
class="btn"
style="background-color: red"
onclick="unloadx()"
>
ถอดการติดตั้ง (End)
</button>
<button
type="button"
class="btn"
style="background-color: green"
onclick="loadx()"
>
Run Code
</button>
<button
type="button"
class="btn"
style="background-color: blue"
onclick="closex()"
>
Close Dev
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>