-
Notifications
You must be signed in to change notification settings - Fork 2
/
SFhunter.cmd
16051 lines (14494 loc) · 371 KB
/
SFhunter.cmd
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
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#SFhunter Version 2
counter set 0
goto TOP
goto %zHFromEZ
INTRO:
put echo /on
waitfor echo
echo
echo ***********************************************
echo ** [|][|] [|] [] [][] []|[] [][] [][] **
echo ** [] [] [] [] [] [] [] [] [] [] **
echo ** [] [] [] []|[] [] [] [][] [] [] **
echo ** [] [] [] [] [] [][] [][] [] [][] [][] **
echo ***********************************************
echo
put echo /off
waitfor echo
echo SFhunter Version 2
echo Last tweak 8/22/2009 1:38PM
echo
echo SITE: http://www.malific.com/ or http://www.geocities.com/malificdr/
echo AIM: Malific Drockmur
echo EMAIL: [email protected]
echo
echo }}}}}}}}} .SFhunter HELP {{{{{{{{{
echo
IF_1 goto BEGIN
goto %zHD
INTRO_NEW:
EZcheck_%EZrange:
setvariable zHFromEZ TOP
TOP:
#Jeorgiesetvariable zHloot YES_LOOT
#Jeorgiesetvariable zHskin SKIN1
#Jeorgiesetvariable zHskindrop BUN_NO
#Jeorgieput sheath
#Jeorgiegoto JEORGIE
setvariable zHloot NO_LOOT
setvariable zHskin SEARCH
setvariable zHskindrop NOBUN
setvariable zHlootgem 1
setvariable zHlootcoin 1
setvariable zHlootbox 1
setvariable zHlootjunk 1
JEORGIE:
setvariable zHsearch
setvariable zHexpC OFF
setvariable zHskinexp BUN
setvariable zHretreat SKIN1_
setvariable zHamb OFF
setvariable zHarrange ARR_NO
setvariable zHmonsterapp NO_APP
setvariable zHmulti OFF
setvariable zHexpA OFF
setvariable zHexpB OFF
setvariable zHtype 0
setvariable zHrange 1
setvariable zHrange1 fire
setvariable zHrepeat RANGE
setvariable zHmana NA
setvariable zHspell NA
setvariable zHmc NA
setvariable zHm NA
setvariable zHexpM ON
setvariable zHget OFF
setvariable zHCOM1 OFF
setvariable zHCOM2 OFF
setvariable zHCOM3 OFF
setvariable zHCOM4 OFF
setvariable zHCOM5 OFF
setvariable zHcount OFF
setvariable zHCOUNT NA
setvariable zHcBrawl OFF
setvariable zHbrawltype WEAPON
setvariable zHskinsS 0
setvariable zHlootsS 0
setvariable zHkillsS 0
setvariable zHcritters 0
GOTO INTRO
%zHD:
echo
echo **************************************************************************************
echo ** Welcome to SFhunter! Created By: Malific Drockmur
echo **
echo ** Basic usage
echo ** .SFhunter {weapon} (shield) *shields are always optional*
echo **
echo ** For a complete list of syntaxes restart the script as:
echo ** }}}}}}}}}.SFhunter HELP{{{{{{{{{
echo **
echo ** SFhunter was designed to support all weapon types. It works
echo ** them quickly and effectively, and can skin and loot kills.
echo **
echo ** Please note this is NOT an AFK script. If you get into
echo ** trouble the script will NOT get you out of it.
echo **************************************************************************************
echo
echo **************************************************************************************
echo ** TAKE ADVANTAGE OF MAKING A DEFAULT SETTING!
echo ** This allows you to type JUST '.SFhunter' to start hunting!
echo ** See .SFhunter HELP and type in 'default' for details!
echo **************************************************************************************
echo
echo ** }}}}}}}}}.SFhunter HELP{{{{{{{{{
exit
BEGIN_PAUSE:
pause
10000:
0:
1:
2:
BEGIN:
match WEAPON_CHECK you draw
match WEAPON_CHECK re already holding
match BEGIN_HANDS free hand
match WEAPON_CHECK free to
matchre BEGINA /out of reach|remove|already w|What were you|can't seem/i
match VARI_CHECK Wield what?
match BEGINA You can only wield a weapon or a shield!
match BEGIN_PAUSE ...wait
match BEGIN_PAUSE type ahead
put wield right my %1
matchwait
BEGINA_PAUSE:
pause
BEGINA:
match WEAPON_CHECK you sling
match WEAPON_CHECK re already holding
match WEAPON_CHECK inventory
match WEAPON_CHECK you remove
match BEGIN_HANDS free hand
match BEGINB remove what?
match BEGIN_HANDS hands are full
match BEGINA_PAUSE ...wait
match BEGINA_PAUSE type ahead
put remove my %1
matchwait
BEGINB_PAUSE:
pause
BEGINB:
match B_BALDRIC baldric
match WEAPON_CHECK you get
match VARI_CHECK What were you
match BEGINB_PAUSE ...wait
match BEGINB_PAUSE type ahead
put get my %1
matchwait
B_BALDRIC:
echo
echo B_BALDRIC:
echo
setvariable zHget ON
setvariable zHgetA in my baldric
goto WEAPON_CHECK
VARI_CHECK_PAUSE:
pause
VARI_CHECK:
echo
echo VARI_CHECK:
echo
match %1 roundtime
match VARI_CHECK_PAUSE ...wait
match VARI_CHECK_PAUSE type ahead
match %1 You cannot back away from a chance to continue your slaughter!
match %1 You retreat
match %1 You sneak back
match %1 already as far
match %1 You stop advancing
put retreat
matchwait
BEGIN_HANDS:
echo
echo BEGIN_HANDS:
echo
echo **************************
echo ** Your hands are full!
echo ** Ending script.
echo **************************
echo
exit
DEAD:
put *** You are Dead.
echo
echo **************************
echo ** You Seem to be dead.
echo ** Ending Script.
echo **************************
echo
exit
WEAPON_CHECK:
echo
echo WEAPON_CHECK:
echo
setvariable zHweapon %1
match LE light edged
match ME medium edged
match HE heavy edged
match 2HE two-handed edged
match LB light blunt
match MB medium blunt
match HB heavy blunt
match 2HB two-handed blunt
match STAFF_SLING staff sling
match SHORT_BOW short bow
match LONG_BOW long bow
match COMP_BOW composite bow
match LX light crossbow
match HX heavy crossbow
match SHORT_STAFF short staff
match Q_STAFF quarter staff
match PIKE pike
match HALBERD halberd
match SLINGS sling
match BEGIN_NOWEAP What were you
match BEGIN_HANDS It's hard to appraise
match UN_ID roundtime
put appraise my %1 quick
matchwait
LE_PAUSE:
pause
LE:
echo
echo LE:
echo
LE2:
match LE_SLICE leaf-blade
match LE_SLICE Jagged Dao
match LE_SLICE jagged dragon-pommel dao
match LE_SLICE Curved Kythe
match LE_SLICE Koummya
match LE_SLICE Jambiya
match LE_SLICE Serrated Steel Dao
match LE_SLICE Gold and Blue-enameled Oben
match LE_SLICE Darkly-Tinted Oben
match LE_SLICE Bejeweled Silver Knife
match LE_SLICE Crescent-bladed Shaska
match LE_SLICE katar
match LE_SLICE kanabu
match LE_STAB Thin Steel Katar with Viper Fang Hilt
match LE_STAB right hand
match LE_PAUSE ...wait
match LE_PAUSE type ahead
put glance
matchwait
LE_SLICE:
setvariable zHexp Light.Edged
echo
echo LE_SLICE:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 feint
setvariable zHcombo3 draw
setvariable zHcombo4 slice
setvariable zHcombo5 chop
setvariable zHcombo6 sweep
setvariable zHcombo7 unused
setvariable zHcombo8 unused
#setvariable zHcombo1 parry
#setvariable zHcombo2 feint
#setvariable zHcombo3 draw
#setvariable zHcombo4 thrust
#setvariable zHcombo5 jab
#setvariable zHcombo6 unused
#setvariable zHcombo7 unused
#setvariable zHcombo8 unused
counter add 600
IF_2 goto EQUIP_2
goto %c
LE_STAB:
setvariable zHexp Light.Edged
echo
echo LE_THRUST:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 feint
setvariable zHcombo3 lunge
setvariable zHcombo4 thrust
setvariable zHcombo5 jab
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
#setvariable zHcombo1 parry
#setvariable zHcombo2 feint
#setvariable zHcombo3 draw
#setvariable zHcombo4 thrust
#setvariable zHcombo5 pummel
#setvariable zHcombo6 dodge
#setvariable zHcombo7 thrust
#setvariable zHcombo8 unused
#counter add 700
IF_2 goto EQUIP_2
goto %c
ME_PAUSE:
pause
ME:
echo
echo ME:
echo
match ME_SLICE Sapara
match ME_SLICE Scimitar
match ME_SLICE Cutlass
match ME_SLICE Axe
match ME_SLICE Hatchet
match ME_SLICE Shotel
match ME_SLICE Tei'oloh'ata
match ME_SLICE Parang
match ME_SLICE Sword
match ME_SLICE Telo
match ME_SLICE Adze
match ME_SLICE Curlade
match ME_SLICE Hanger
match ME_SLICE Scythe-blade
match ME_SLICE Cleaver
match ME_SLICE Lata'oloh
match ME_SLICE Mirror Blade
match ME_ILTESH Iltesh
match ME_STAB Rapier
match ME_STAB Nambeli
match ME_STAB Yataghan
match ME_STAB Shashqa
match ME_STAB Gladius
match ME_STAB Pasabas
match ME_STAB Foil
match ME_STAB Thrusting Blade
match ME_STAB Sabre
match ME_SLICE right hand
match ME_PAUSE ...wait
match ME_PAUSE type ahead
put glance
matchwait
#Not Steph's
ME_SLICE:
setvariable zHexp Medium.Edged
echo
echo ME_SLICE:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 feint
setvariable zHcombo3 draw
setvariable zHcombo4 sweep
setvariable zHcombo5 slice
setvariable zHcombo6 chop
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 600
IF_2 goto EQUIP_2
goto %c
ME_ILTESH:
setvariable zHexp Medium.Edged
echo
echo ME_ILTESH:
echo
setvariable zHcombo1 feint
setvariable zHcombo2 draw
setvariable zHcombo3 sweep
setvariable zHcombo4 slice
setvariable zHcombo5 chop
setvariable zHcombo6 lunge
setvariable zHcombo7 thrust
setvariable zHcombo8 jab
counter add 800
IF_2 goto EQUIP_2
goto %c
ME_STAB:
setvariable zHexp Medium.Edged
echo
echo ME_THRUST:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 feint
setvariable zHcombo3 draw
setvariable zHcombo4 sweep
setvariable zHcombo5 thrust
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
IF_2 goto EQUIP_2
goto %c
HE_PAUSE:
pause
HE:
echo
echo HE:
echo
match HE_STAB Enamel-Hilted Longsword
match HE_STAB Namkoba
match HE_STAB Reinforced Cinquedea
match HE_SLICE right hand
match HE_PAUSE ...wait
match HE_PAUSE type ahead
put glance
matchwait
HE_SLICE:
setvariable zHexp Heavy.Edged
echo
echo HE_SLICE:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 feint
setvariable zHcombo3 draw
setvariable zHcombo4 sweep
setvariable zHcombo5 slice
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
IF_2 goto EQUIP_2
goto %c
HE_STAB:
setvariable zHexp Heavy.Edged
echo
echo HE_THRUST:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 feint
setvariable zHcombo3 lunge
setvariable zHcombo4 thrust
setvariable zHcombo5 jab
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
IF_2 goto EQUIP_2
goto %c
2HE:
setvariable zHexp Twohanded.Edged
echo
echo 2HE:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 feint
setvariable zHcombo3 draw
setvariable zHcombo4 sweep
setvariable zHcombo5 slice
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
goto %c
LB:
setvariable zHexp Light.Blunt
echo
echo LB:
echo
setvariable zHcombo1 dodge
#setvariable zHcombo2 feint
setvariable zHcombo2 bash
setvariable zHcombo3 sweep
setvariable zHcombo4 draw
#setvariable zHcombo5 jab
setvariable zHcombo5 slice
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
IF_2 goto EQUIP_2
goto %c
MB:
setvariable zHexp Medium.Blunt
echo
echo MB:
echo
setvariable zHcombo1 dodge
setvariable zHcombo2 feint
setvariable zHcombo3 bash
setvariable zHcombo4 sweep
setvariable zHcombo5 draw
setvariable zHcombo6 jab
setvariable zHcombo7 slice
setvariable zHcombo8 unused
counter add 700
IF_2 goto EQUIP_2
goto %c
HB:
setvariable zHexp Heavy.Blunt
echo
echo HB:
echo
setvariable zHcombo1 feint
setvariable zHcombo2 bash
setvariable zHcombo3 sweep
setvariable zHcombo4 draw
setvariable zHcombo5 slice
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
IF_2 goto EQUIP_2
goto %c
2HB:
setvariable zHexp Twohanded.Blunt
echo
echo 2HB:
echo
setvariable zHcombo1 feint
setvariable zHcombo2 bash
setvariable zHcombo3 sweep
setvariable zHcombo4 draw
setvariable zHcombo5 slice
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
goto %c
SHORT_STAFF:
setvariable zHexp Short.Staff
echo
echo SHORT_STAFF:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 thrust
setvariable zHcombo3 sweep
setvariable zHcombo4 chop
setvariable zHcombo5 jab
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
goto %c
Q_STAFF:
setvariable zHexp Quarter.Staff
echo
echo Q_STAFF:
echo
setvariable zHcombo1 parry
setvariable zHcombo2 thrust
setvariable zHcombo3 sweep
setvariable zHcombo4 bash
setvariable zHcombo5 draw
setvariable zHcombo6 slice
#setvariable zHcombo1 feint
#setvariable zHcombo2 draw
#setvariable zHcombo3 slice
#setvariable zHcombo4 sweep
#setvariable zHcombo5 bash
#setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 600
goto %c
PIKE:
setvariable zHexp Pike
echo
echo PIKE:
echo
setvariable zHcombo1 dodge
setvariable zHcombo2 jab
setvariable zHcombo3 sweep
setvariable zHcombo4 thrust
setvariable zHcombo5 lunge
setvariable zHcombo6 unused
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 500
goto %c
HALBERD:
setvariable zHexp Halberd
echo
echo HALBERD:
echo
setvariable zHcombo1 dodge
setvariable zHcombo2 feint
setvariable zHcombo3 thrust
setvariable zHcombo4 sweep
setvariable zHcombo5 chop
setvariable zHcombo6 jab
setvariable zHcombo7 unused
setvariable zHcombo8 unused
counter add 600
#setvariable zHcombo1 thrust
#setvariable zHcombo2 sweep
#setvariable zHcombo3 slice
#setvariable zHcombo4 chop
#setvariable zHcombo5 jab
#setvariable zHcombo6 unused
#setvariable zHcombo7 unused
#setvariable zHcombo8 unused
#counter add 500
goto %c
SLINGS:
setvariable zHammo rock
setvariable zHexp Sling
echo
echo SLING:
echo
put retreat
waitfor you
put retreat
waitfor you
counter add 100
IF_2 goto EQUIP_2
goto %c
STAFF_SLING:
setvariable zHammo rock
setvariable zHexp Staff.Sling
echo
echo STAFF_SLING:
echo
put retreat
waitfor you
put retreat
waitfor you
counter add 100
goto %c
LX:
setvariable zHammo bolt
setvariable zHexp Light.Crossbow
echo
echo LX:
echo
put retreat
waitfor you
put retreat
waitfor you
counter add 100
IF_2 goto EQUIP_2
goto %c
HX:
setvariable zHammo bolt
setvariable zHexp Heavy.Crossbow
echo
echo HX:
echo
put retreat
waitfor you
put retreat
waitfor you
counter add 100
goto %c
SHORT_BOW:
setvariable zHammo arrow
setvariable zHexp Short.Bow
echo
echo SHORT_BOW:
echo
put retreat
waitfor you
put retreat
waitfor you
counter add 100
goto %c
LONG_BOW:
setvariable zHammo arrow
setvariable zHexp Long.Bow
echo
echo LONG_BOW:
echo
put retreat
waitfor you
put retreat
waitfor you
counter add 100
goto %c
COMP_BOW:
setvariable zHammo arrow
setvariable zHexp Composite.Bow
echo
echo COMP_BOW:
echo
put retreat
waitfor you
put retreat
waitfor you
counter add 100
goto %c
DAN:
DANC:
DANCE:
COUNT:
COUN:
COU:
echo
echo COUNT:
echo
setvariable zHcount ON
shift
goto COUNT_%1
COUNT_0:
setvariable zHCOUNT COUNT_ONE
shift
goto BEGIN
COUNT_1:
setvariable zHCOUNT COUNT_TWO
shift
goto BEGIN
COUNT_2:
setvariable zHCOUNT COUNT_THREE
shift
goto BEGIN
COUNT_3:
setvariable zHCOUNT COUNT_FOUR
shift
goto BEGIN
COUNT_4:
setvariable zHCOUNT COUNT_FIVE
shift
goto BEGIN
COUNT_5:
setvariable zHCOUNT COUNT_SIX
shift
goto BEGIN
COUNT_6:
setvariable zHCOUNT COUNT_SEVEN
shift
goto BEGIN
COUNT_7:
setvariable zHCOUNT COUNT_EIGHT
shift
goto BEGIN
COUNT_8:
setvariable zHCOUNT COUNT_NINE
shift
goto BEGIN
COUNT_9:
setvariable zHCOUNT COUNT_TEN
shift
goto BEGIN
COUNT_10:
setvariable zHCOUNT COUNT_ELEVEN
shift
goto BEGIN
COUNT_11:
setvariable zHCOUNT COUNT_TWELVE
shift
goto BEGIN
COUNT_12:
setvariable zHCOUNT COUNT_THIRTEEN
shift
goto BEGIN
COUNT_13:
setvariable zHCOUNT COUNT_FOURTEEN
shift
goto BEGIN
COUNT_14:
setvariable zHCOUNT COUNT_FIFTEEN
shift
goto BEGIN
COUNT_15:
setvariable zHCOUNT COUNT_SIXTEEN
shift
goto BEGIN
COUNT_16:
setvariable zHCOUNT COUNT_SEVENTEEN
shift
goto BEGIN
COUNT_17:
setvariable zHCOUNT COUNT_EIGHTEEN
shift
goto BEGIN
COUNT_18:
setvariable zHCOUNT COUNT_NINETEEN
shift
goto BEGIN
COUNT_19:
COUNT_20:
setvariable zHCOUNT COUNT_PLUS
shift
goto BEGIN
COMMAND:
COMMAND1:
COMMAN:
COMMAN1:
COMMA:
COMMA1:
COMM:
COMM1:
COM
COM1:
shift
setvariable zHcom1 %1
setvariable zHCOM1 ON
shift
goto BEGIN
COMMAND2:
COMMAN2:
COMMA2:
COMM2:
COM2:
shift
setvariable zHcom2 %1
setvariable zHCOM2 ON
shift
goto BEGIN
COMMAND3:
COMMAN3:
COMMA3:
COMM3:
COM3:
shift
setvariable zHcom3 %1
setvariable zHCOM3 ON
shift
goto BEGIN
COMMAND4:
COMMAN4:
COMMA4:
COMM4:
COM4:
shift
setvariable zHcom4 %1
setvariable zHCOM4 ON
shift
goto BEGIN
COMMAND5:
COMMAN5:
COMMA5:
COMM5:
COM5:
shift
setvariable zHcom5 %1
setvariable zHCOM5 ON
shift
goto BEGIN
REM:
REMO:
REMOV:
REMOVE:
echo
echo REMOVE:
echo
shift
put remove my %1
wait
put stow my %1
wait
shift
goto BEGIN
WEA:
WEAR:
echo
echo WEAR:
echo
shift
put get my %1
wait
put wear my %1
wait
shift
goto BEGIN
EXP:
echo
echo EXP:
echo
setvariable zHexpC ON
shift
goto BEGIN
ATT:
ATTA:
ATTAC:
ATTACK:
echo
echo ATTACK:
echo
shift
put stance attack
wait
goto BEGIN
EVA:
EVAS:
EVAD:
EVASI:
EVADE:
EVASIO:
EVASION:
echo
echo EVASION:
echo
shift
put stance evasion
wait
goto BEGIN
BLO:
BLOC:
BLOCK:
echo
echo BLOCK:
echo
shift
put stance shield
wait
goto BEGIN
PAR:
PARR:
PARRY:
echo
echo PARRY:
echo
shift
put stance parry
wait
goto BEGIN
CUS:
CUST:
CUSTO:
CUSTOM:
echo
echo CUSTOM:
echo
shift
put stance custom
wait
goto BEGIN
REP:
REPE:
REPEA:
REPEAT:
REPEATE:
REPEATER:
echo
echo REPEATER:
echo
put retreat
waitfor you
put retreat
waitfor you
setvariable zHrepeat REPEAT
shift
goto BEGIN
LOG:
VINE:
put retreat
waitfor you
put retreat
waitfor you
setvariable zHexp THROW
setvariable zHexpB THROW
Counter set 1200
echo
echo VINE:
echo
goto THROW_EQUIP
OFF: