forked from ark-automated/Ark-Automated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AA_GUI.html
955 lines (851 loc) · 48.8 KB
/
AA_GUI.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
<!DOCTYPE html>
<html>
<head>
<!--
The IE Compatibility flag, while not always necessary, makes sure your page
will always load in IE11+ rendering mode instead of being limited to IE7
features and behaviors. While IE11 is still relatively old as a rendering
engine, it supports the most fundamental parts needed for modern webpages to
function correctly.
Neutron will do its best to enable IE11+ rendering mode regardless of this
tag, but in current releases pages will not render correctly when compiled
unless this tag is present. Because of that and other edge cases, any page
you write to load in Neutron should contain this meta tag.
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="bootstrap.min.css" rel="stylesheet">
<script src="jquery.min.js"></script>
<script src="bootstrap.bundle.js"></script>
<script>
function FWToggle() {
// Get the checkbox
var checkBox = document.getElementById("FWCheck");
// Get the output text
var text = document.getElementById("FWYes");
// If the checkbox is checked, display the output text
if (checkBox.checked == true) {
text.style.display = "block";
} else {
text.style.display = "none";
}
}
// Fix proper later
function CloseAlert() {
document.getElementById("MacroAssignedAlert").style.display = "none";
}
function ShowModal() {
$('#SetSettingsModal').modal();
}
function SettingsPage() {
$('#v-pills-tab a[href="#v-pills-Settings"]').tab('show')
}
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
<style>
html,
body {
width: 100%;
height: 100%;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default
}
.title-btn {
padding: 0.35em 1.0em;
cursor: pointer;
vertical-align: bottom;
font-family: Webdings;
font-size: 11pt;
}
.title-btn:hover {
background: rgba(0, 0, 0, .2);
}
.title-btn-close:hover {
background: #dc3545;
}
img {
max-width: 100%;
border-radius: 0.25em;
margin: 0.5em 0;
}
</style>
</head>
<body class="d-flex flex-column " oncontextmenu="return false;" onload="ahk.SetTitle(); ahk.CheckSettingsSet()">
<!-- oncontextmenu="return false;" blocks right mouse button -->
<!-- Title Bar -->
<header>
<div class="d-flex align-items-stretch bg-dark text-white">
<span class="flex-grow-1 px-2 py-1" id="titlebar123" onmousedown="neutron.DragTitleBar()">Ark Automated by
Olivier#6863</span>
<span class="title-btn" onclick="neutron.Minimize()">0</span>
<span class="title-btn" onclick="neutron.Maximize()">1</span>
<span class="title-btn title-btn-close" onclick="neutron.Close()">r</span>
</div>
</header>
<!-- End Title Bar -->
<!-- Window Contents -->
<div class="flex-grow-1 d-flex overflow-auto ">
<!-- Sidebar -->
<div class="nav flex-column nav-pills bg-dark text-light" id="v-pills-tab" role="tablist"
aria-orientation="vertical">
<a class="nav-link text-light active" id="v-pills-home-tab" data-toggle="pill" href="#v-pills-home" role="tab"
aria-controls="v-pills-home" aria-selected="true">Home</a>
<a class="nav-link text-light" id="v-pills-Settings-tab" data-toggle="pill" href="#v-pills-Settings" role="tab"
aria-controls="v-pills-Settings" aria-selected="false">Settings</a>
<a class="nav-link text-light" id="v-pills-Help-tab" data-toggle="pill" href="#v-pills-Help" role="tab"
aria-controls="v-pills-Help" aria-selected="false">Help</a>
<a class="nav-link disabled" id="v-pills-PremiumFunctions-tab" data-toggle="pill" href="#v-pills-PremiumFunctions"
role="tab" aria-controls="v-pills-PremiumFunctions" aria-selected="false" aria-disabled="true"
tabindex="-1">Premium functions</a>
<footer class="footer mt-auto py-3 text-center">
<a class="btn btn-primary btn-block" onclick="ahk.Donate()" role="button">Donate</a>
<a class="btn btn-secondary btn-block" onclick="ahk.OpenGithub()" role="button">Visit Github page</a>
</footer>
</div>
<!-- End Sidebar -->
<!-- Page Content -->
<div class="flex-grow-1 overflow-auto">
<div class="tab-content container-fluid p-2" style="width: 98%" id="v-pills-tabContent">
<!-- v-pills-home -->
<div class="tab-pane fade show active" id="v-pills-home" role="tabpanel" aria-labelledby="v-pills-home-tab">
<h1 class="text-center">Welcome to Ark Automated</h1>
<!-- Future alerts:
document.getElementById('alert-msg').innerHTML = message; // set message text
document.getElementById("myDIV").style.display = "none";
-->
<div class="alert alert-success alert-dismissible fade show" id="MacroAssignedAlert" role="alert"
style="display: none;">
<span id="MacroAssignedAlert1">text here</span>
<button type="button" class="close" onclick=CloseAlert()>
<span aria-hidden="true">×</span>
</button>
</div>
<!-- Set settings modal, triggers if settings are not changed -->
<div class="modal fade" id="SetSettingsModal" data-backdrop="static" tabindex="-1" role="dialog"
aria-labelledby="SetSettingsModalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="SetSettingsModalTitle">Configure settings</h5>
</div>
<div class="modal-body">
It seems like you have not configured (all) your settings yet. Please go to the settings tab and
configure the mouse locations, press the info button if you need help with the locations or the video
button if you need a video tutorial.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal" onclick="SettingsPage()">Go to the
settings tab</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="dropdown">
<button class="btn btn-primary btn-block dropdown-toggle" type="button" id="dropdownMenu2"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Select macro
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<!--<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv" data-target="#REPLACEME" aria-expanded="false"aria-controls="REPLACEME">REPLACEME</button>-->
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#SimpleMacro" aria-expanded="false" aria-controls="SimpleMacro">SimpleMacro</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#BabyFeederSingle" aria-expanded="false"
aria-controls="BabyFeederSingle">BabyFeederSingle</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#BabyFeederMass" aria-expanded="false"
aria-controls="BabyFeederMass">BabyFeederMass</button>
<div class="dropdown-divider"></div>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#EmptyCropplots" aria-expanded="false"
aria-controls="EmptyCropplots">EmptyCropplots</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#EmptyDrop" aria-expanded="false" aria-controls="EmptyDrop">EmptyDrop</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#OpenBunnyEggs" aria-expanded="false"
aria-controls="OpenBunnyEggs">OpenBunnyEggs</button>
<div class="dropdown-divider"></div>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#FastDropDedicatedStorage" aria-expanded="false"
aria-controls="FastDropDedicatedStorage">FastDropDedicatedStorage</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#SpamInventory" aria-expanded="false"
aria-controls="SpamInventory">SpamInventory</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#BloodPackFarmer" aria-expanded="false"
aria-controls="BloodPackFarmer">BloodPackFarmer</button>
<div class="dropdown-divider"></div>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#BabyClaimingClosingMenu" aria-expanded="false"
aria-controls="BabyClaimingClosingMenu">BabyClaimingClosingMenu</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#Dust2Elementcrafter" aria-expanded="false"
aria-controls="Dust2Elementcrafter">Dust2Elementcrafter</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#FarmAssistant" aria-expanded="false"
aria-controls="FarmAssistant">FarmAssistant</button>
<div class="dropdown-divider"></div>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#AutoWalker" aria-expanded="false" aria-controls="AutoWalker">AutoWalker</button>
<button class="dropdown-item" type="button" data-toggle="collapse" data-parent="#parentdiv"
data-target="#Berry2Seed" aria-expanded="false" aria-controls="Berry2Seed">Berry2Seed</button>
</div>
</div>
<div class="mt-2">
<div class="card card-body">
<div>Show macro status in ark</div>
<div class="btn-group btn-group-toggle d-flex justify-content-center" data-toggle="buttons">
<label class="btn btn-secondary" onclick="ahk.ShowMacroStatusArk(event)">
<input type="radio" name="options" id="option1"> On
</label>
<label class="btn btn-secondary" onclick="ahk.ShowMacroStatusArkOff(event)">
<input type="radio" name="options" id="option2" checked> Off
</label>
</div>
<div>Consume food and water</div>
<div class="btn-group btn-group-toggle d-flex justify-content-center" data-toggle="buttons">
<label class="btn btn-secondary" onclick="ahk.ConsumeFWOn(event)">
<input type="radio" name="options" id="option1"> On
</label>
<label class="btn btn-secondary" onclick="ahk.ConsumeFWOff(event)">
<input type="radio" name="options" id="option2" checked> Off
</label>
</div>
</div>
</div>
</div>
<div class="col-8">
<div id="parentdiv">
<div class="accordion-group">
<div class="collapse indent" id="SimpleMacro" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">SimpleMacro</h1>
With this macro you can spam the key you set below with the interval you set in the second box.
<form>
<div class="form-group row">
<label for="SMkey" class="col-sm-4 col-form-label">Key</label>
<div class="col-sm-4">
<select class="form-control" id="SMKey" required>
<option>a</option>
<option>b</option>
<option>c</option>
<option>d</option>
<option>e</option>
<option>f</option>
<option>g</option>
<option>h</option>
<option>i</option>
<option>j</option>
<option>k</option>
<option>l</option>
<option>m</option>
<option>n</option>
<option>o</option>
<option>p</option>
<option>q</option>
<option>r</option>
<option>s</option>
<option>t</option>
<option>u</option>
<option>v</option>
<option>w</option>
<option>x</option>
<option>y</option>
<option>z</option>
<option>{LButton}</option>
<option>{RButton}</option>
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
</select>
</div>
</div>
<div class="form-group row">
<label for="SMinterval" class="col-sm-4 col-form-label">Interval:</label>
<div class="col-sm-6">
<input type="number" class="form-control" id="SMinterval" aria-describedby="SMinthint"
Value="250">
<small id="SMinthint" class="form-text text-muted">In miliseconds, 1000ms=1second. Default
250ms</small>
</div>
</div>
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,1)">Assign
macro to key</button>
</div>
</div>
</form>
</div>
</div>
<!--BABYFEEDER SINGLE-->
<div class="collapse indent" id="BabyFeederSingle" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Babyfeeder single</h1>
With this macro you can feed one baby by having the babies inventory open and the food you want to
give it accessable from the first slot in your inventory.(search for your food if implant is in
slot 1)
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,2)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--BABY FEEDER MASS-->
<div class="collapse indent" id="BabyFeederMass" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Babyfeeder mass</h1>
With this macro you can raise many babies at once by continuesly healing them over and over again.
You must start the macro when sitting on a snow owl. Configure the heal duration and time between
heals below. Enter the heal time of the snow owl in the first box(including the time to spin up)
and the time between heals in the second one(in miliseconds):
<div class="form-group row">
<label for="BFMfreeze" class="col-sm-7 col-form-label">Heal time:</label>
<div class="col-sm-5">
<input type="number" class="form-control" id="BFMfreeze" aria-describedby="BFMfreeze"
Value="10000">
</div>
</div>
<div class="form-group row">
<label for="BFMinterval" class="col-sm-7 col-form-label">Time between heals:</label>
<div class="col-sm-5">
<input type="number" class="form-control" id="BFMinterval" aria-describedby="BFMinterval"
Value="10000">
</div>
<small id="BFMinthint" class="form-text text-muted">In miliseconds, 1000ms=1second. Default
10000ms(10sec) for both</small>
</div>
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,3)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--Empty Cropplots-->
<div class="collapse indent" id="EmptyCropplots" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Empty cropplots</h1>
Removes everything from the cropplot and then puts the fertilizer back.
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,4)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--Empty Drop-->
<div class="collapse indent" id="EmptyDrop" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Empty drop</h1>
Press the hotkey when the drop is open to quickly withdraw all from the remote inventory. Premium
members can use the premium version which will spam open the drop+spam the virtual controller
button to withdraw all. (will be added to normal one later, just need to figure out an easy way to
emulate a controller)
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,5)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--OPEN BUNNY EGGS-->
<div class="collapse indent" id="OpenBunnyEggs" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">OpenBunnyEggs</h1>
Start this macro with the egg already selected(ready to place on the ground). The script will
place and open eggs until stopped.
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,6)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--Fastdrop dedicated storage-->
<div class="collapse indent" id="FastDropDedicatedStorage" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Fastdrop DedicatedStorage</h1>
Start with the Dedicated Storage Box inventory open. This macro will withdraw all from the
Dedicated storage and then drop from inventory until it will take more from the dedicated storage
box. This is a lot faster than manually pressing O while hovering over the remote inventory slot.
Make sure to either filter for the item you want to drop in your inventory, or have an empty
inventory.
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,7)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--Spam Inventory-->
<div class="collapse indent" id="SpamInventory" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Spam inventory</h1>
This macro will spam the key you set below across the first row of your or the remote inventory.
Example usecases: Opening gacha crystals, dropping items instead of creating a bag(useful when
emptying anky etc). Will keep running until you stop it. Remote inventory will be added soon
<div class="form-group row">
<label for="SIkey" class="col-sm-4 col-form-label">Key</label>
<div class="col-sm-4">
<select class="form-control" id="SIkey" required>
<option>a</option>
<option>b</option>
<option>c</option>
<option>d</option>
<option>e</option>
<option>f</option>
<option>g</option>
<option>h</option>
<option>i</option>
<option>j</option>
<option>k</option>
<option>l</option>
<option>m</option>
<option>n</option>
<option>o</option>
<option>p</option>
<option>q</option>
<option>r</option>
<option>s</option>
<option>t</option>
<option>u</option>
<option>v</option>
<option>w</option>
<option>x</option>
<option>y</option>
<option>z</option>
<option>{LButton}</option>
<option>{RButton}</option>
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
</select>
</div>
</div>
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,8)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--BloodPackFarmer-->
<div class="collapse indent" id="BloodPackFarmer" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Bloodpack farmer</h1>
The following 2 methods are available to create bloodpacks: Medbrews and tek pod. REQUIRES USING
THE ENGLISH LANGUAGE IN GAME.
<hr>
Medic brew method:
Start the script with your inventory open and with enough medical brews and a blood syringe in
your inventory. Does not stop when out of brews so it will suicide if you do not stop it in time.
</br>
Tek pod method:
Start the script while laying in the tek pod. Make sure that your tek pod is placed with the head
facing north and feet facing south so you can access the tek pod without moving. The tek pod heals
between 4 and 12HP per second, to be safe it is set to 5HP regen per second. If you want you can
configure an additional wait timer below.
<div class="form-group row">
<label for="BPFMethod" class="col-sm-6 col-form-label">Method:</label>
<div class="col-sm-6">
<select class="form-control" id="BPFMethod" required>
<option>MedicalBrew</option>
<option>TekPod</option>
</select>
</div>
</div>
<div class="form-group row">
<label for="BPFHP" class="col-sm-6 pr-0 col-form-label">HP of your survivor:</label>
<div class="col-sm-6">
<input type="number" class="form-control" id="BPFHP" value="100">
</div>
</div>
<div class="form-group row">
<label for="BPFCST" class="col-sm-6 pr-0 col-form-label">Custom sleep timer:</label>
<div class="col-sm-6">
<input type="number" class="form-control" id="BPFCST" value="0">
</div>
</div>
<hr>
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,9)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--Baby claiming & closing name menu-->
<div class="collapse indent" id="BabyClaimingClosingMenu" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Baby claiming & closing name menu</h1>
This macro will automatically claim the dino you are facing and close the naming popup.
NOT YET IMPLEMENTED DUE TO ARK HOTKEY CHANGES THAT MUST BE MADE
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,10)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--Dust2Elementcrafter-->
<div class="collapse indent" id="Dust2Elementcrafter" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Dust2Elementcrafter</h1>
With this macro you can turn dust from a dedicated storage box into element. `n`nHow to
start:`nHave the Dedicated storage with dust open and put the Unstable Element engram in your
FIRST hotbar(bar at the bottom) that has the button 1 assigned to it.
Put the Focal Chili in your 2nd hotbar slot
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,11)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--FarmAssistant-->
<div class="collapse indent" id="FarmAssistant" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">FarmAssistant</h1>
With this macro you can farm resources and drop the things you do not want. Below you can set what
to drop when the inventory is full(black icon displayed), or when the hotkey you set below is
pressed.
Seperate the drop items with a , (comma). Currently clicks every 500ms(0.5seconds)
<hr>
<div class="form-group row">
<label for="FAdropfilter" class="col-sm-3 pr-0 col-form-label">Drop filter:</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="FAdropfilter" value="Stone,Wood,Thatch"
placeholder="Comma,seperated,items,to,drop">
</div>
</div>
<li class="list-group-item">
Manual drop key:<span id="ahk_FAMDHK">none</span>
<button type="button" class="btn btn-primary btn-sm" onclick="ahk.SetFAMDHK(event)">Change
key</button>
<small id="FWinthint" class="form-text text-muted">Make sure to not assign F2(reload
application) or the key assigned to start/stop macros</small>
</li>
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,12)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--AutoWalker-->
<div class="collapse indent" id="AutoWalker" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Autowalker</h1>
This macro will hold shift+w to run/fly fast until the macro hotkey is pressed again.
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,13)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--/AutoWalker-->
<!--Berry2Seed-->
<div class="collapse indent" id="Berry2Seed" data-parent="#parentdiv">
<div class="card card-body">
<h1 class="text-center">Berry2seed</h1>
This macro will convert berries to seeds in an Iguanodon. Start with the Iguanodon inventory open
and filled with up to 150 stacks of berry in its inventory. Put extra stacks of berries in your
own inventory to keep making the stacks. The seeds will be dropped in a bag under the Iguanodon.
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" class="btn btn-primary" onclick="ahk.AssignMacro(event,14)">Assign macro
to key</button>
</div>
</div>
</div>
</div>
<!--/AutoWalker-->
</div>
</div>
</div>
</div>
<div class="row">
</div>
</div>
<!-- End v-pills-home -->
<!-- v-pills-Settings -->
<div class="tab-pane fade" id="v-pills-Settings" role="tabpanel" aria-labelledby="v-pills-Settings-tab">
<h1 class="text-center">SETTINGS</h1>
<form>
<div class="row">
<div class="col">
<div class="card">
<div class="card-header">
Ark Automated settings <a href="#" class="badge badge-info" onclick="ahk.InstructionVid()">Video</a>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">
Start/Pause hotkey:<span id="ahk_MacroKey">none</span>
<button type="button" class="btn btn-primary btn-sm" onclick="ahk.SetMacroKey(event)">Change
key</button>
<small id="FWinthint" class="form-text text-muted">F2 is already assigned to reload the
application so make sure to assign another key</small>
</li>
<li class="list-group-item">
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="FWCheck" onclick="FWToggle()">
<label class="form-check-label" for="FWCheck">Consume food and water</label>
<div id="FWYes" style="display:none">
Food/water interval: <input type="number" class="form-control" id="FWiValue"
aria-describedby="FWinthint">
<small id="FWinthint" class="form-text text-muted">In miliseconds, 1000ms=1second. Put food
and
water in slot 8&9 of your hotbar with the numbers 8 and 9 assigned to them.</small>
</div>
</div>
</div>
</li>
<li class="list-group-item">
<button type="button" class="btn btn-primary btn-sm" onclick="ahk.SMP()">Show mouse X/Ypos
location in ark</button>
</li>
</ul>
</div>
</div>
<div class="col text-center">
<div class="card">
<div class="card-header">
Game settings and locations <a href="#" class="badge badge-info" onclick="ahk.OpenImg(1)">Info</a>
</div>
<ul class="list-group list-group-flush ">
<!--start of X/Ypos -->
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xli" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xli = Xpos Local inventory (first slot in your inventory)">Xli:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xli" placeholder="Xli"
value="">
</div>
<label for="ahk_Yli" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Yli = Ypos Local inventory (first slot in your inventory)">Yli:</label>
<div class="col-3 pl-0 pr-0">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Yli"
placeholder="Yli" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xri" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xri = Xpos remote inventory (first slot in remote inventory)">Xri:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xri" placeholder="Xri"
value="">
</div>
<label for="ahk_Yri" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Yri = Ypos remote inventory (first slot in remote inventory)">Yri:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Yri"
placeholder="Yri" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xwa" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xwa = Xpos withdraw all (transfer all button at remote inventory)">Xwa:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xwa" placeholder="Xwa"
value="">
</div>
<label for="ahk_Ywa" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Ywa = Ypos withdraw all (transfer all button at remote inventory)">Ywa:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Ywa"
placeholder="Ywa" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xda" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xda = Xpos deposit all (transfer all button local inventory)">Xda:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xda" placeholder="Xda"
value="">
</div>
<label for="ahk_Yda" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Yda = Ypos deposit all (transfer all button local inventory)">Yda:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Yda"
placeholder="Yda" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xls" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xls = Xpos local searchbar (set it where you can type after clicking)">Xls:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xls" placeholder="Xls"
value="">
</div>
<label for="ahk_Yls" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Yls = Ypos local searchbar (set it where you can type after clicking)">Yls:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Yls"
placeholder="Yls" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xrs" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xrs = Xpos remote searchbar (set it where you can type after clicking)">Xrs:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xrs" placeholder="Xrs"
value="">
</div>
<label for="ahk_Yrs" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Yrs = Ypos remote searchbar (set it where you can type after clicking)">Yrs:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Yrs"
placeholder="Yrs" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xlf" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xlf = Xpos local full (black icon when slotcapped bottomright corner)">Xlf:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xlf" placeholder="Xlf"
value="">
</div>
<label for="ahk_Ylf" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Ylf = Ypos local full (black icon when slotcapped bottomright corner)">Ylf:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Ylf"
placeholder="Ylf" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xrf" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xrf = Xpos remote full (black icon when slotcapped dino topright corner)">Xrf:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xrf" placeholder="Xrf"
value="">
</div>
<label for="ahk_Yrf" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Yrf = Ypos remote full (black icon when slotcapped dino topright corner)">Yrf:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Yrf"
placeholder="Yrf" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xld" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xld = Xpos local dropall (drop all button local inventory)">Xld:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xld" placeholder="Xld"
value="">
</div>
<label for="ahk_Yld" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Yld = Ypos local dropall (drop all button local inventory)">Yld:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Yld"
placeholder="Yld" value="">
</div>
</div>
</li>
<li class="list-group-item">
<div class="form-group row p-0 m-0 justify-content-center">
<label for="ahk_Xrd" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Xrd = Xpos remote dropall (drop all button remote inventory)">Xrd:</label>
<div class="col-3 pl-1 pr-2">
<input type="number" class="form-control pl-0 pr-0 text-center" id="ahk_Xrd" placeholder="Xrd"
value="">
</div>
<label for="ahk_Yrd" class="col-2 pl-0 pr-0 col-form-label" data-toggle="tooltip"
title="Yrd = Ypos remote dropall (drop all button remote inventory)">Yrd:</label>
<div class="col-3 pl-0 pr-0 text-left">
<input type="number" class="col-9 pl-0 pr-0 form-control text-center" id="ahk_Yrd"
placeholder="Yrd" value="">
</div>
</div>
</li>
<!--end of X/Ypos -->
</ul>
</div>
</div>
</div>
<button type="submit" onclick="ahk.SaveSettings(event)" class="btn btn-block btn-primary mt-2">SAVE
SETTINGS</button>
</form>
</div>
<!-- End v-pills-Settings -->
<!-- v-pills-Help -->
<div class="tab-pane fade" id="v-pills-Help" role="tabpanel" aria-labelledby="v-pills-Help-tab">
<h1 class="text-center">Help</h1>
<div class="row">
<div class="col-sm">
<button type="button" onclick="ahk.JoinDiscord(1)" class="btn btn-primary">join Creators Discord
server</button>
</div>
<div class="col-sm">
<button type="button" onclick="ahk.JoinDiscord(2)" class="btn btn-primary">Contact Olivier#6863
directly</button>
</div>
</div>
</div>
<!-- End v-pills-Help -->
<!-- v-pills-PremiumFunctions -->
<div class="tab-pane fade" id="v-pills-PremiumFunctions" role="tabpanel"
aria-labelledby="v-pills-PremiumFunctions-tab">
</div>
<!-- End v-pills-PremiumFunctions -->
</div>
</div>
<!-- End Page Contents -->
</div>
<!-- End Window Contents -->
</body>
</html>