-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathscripts.json
27174 lines (27174 loc) · 760 KB
/
scripts.json
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
[
{
"name": "null",
"description": "null",
"tags": [
"null"
],
"path": "CoreDailies.cs",
"size": 50767,
"fileName": "CoreDailies.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/CoreDailies.cs"
},
{
"name": "null",
"description": "null",
"tags": [
"null"
],
"path": "CoreAdvanced.cs",
"size": 139397,
"fileName": "CoreAdvanced.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/CoreAdvanced.cs"
},
{
"name": "null",
"description": "null",
"tags": [
"null"
],
"path": "CoreFarms.cs",
"size": 137383,
"fileName": "CoreFarms.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/CoreFarms.cs"
},
{
"name": "null",
"description": "null",
"tags": [
"null"
],
"path": "CoreStory.cs",
"size": 34015,
"fileName": "CoreStory.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/CoreStory.cs"
},
{
"name": "null",
"description": "null",
"tags": [
"null"
],
"path": "CoreBots.cs",
"size": 339533,
"fileName": "CoreBots.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/CoreBots.cs"
},
{
"name": "Complete All Seasonal Story",
"description": "This will finish all of seasonal story on current month.",
"tags": [
"seasonal",
"story",
"complete",
"all"
],
"path": "Seasonal/AllSeasonal.cs",
"size": 9301,
"fileName": "AllSeasonal.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Seasonal/AllSeasonal.cs"
},
{
"name": "Paladin (Class)",
"description": "This bot farms the Paladin class for you.",
"tags": [
"warrior",
"healer",
"paladin",
"class"
],
"path": "Good/Paladin.cs",
"size": 1109,
"fileName": "Paladin.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Good/Paladin.cs"
},
{
"name": "ArchPaladin (Class)",
"description": "This bot farms the ArchPaladin class for you.",
"tags": [
"class",
"good",
"tank",
"hp",
"templar",
"support",
"survivability",
"figher",
"healer",
"undead"
],
"path": "Good/ArchPaladin.cs",
"size": 10586,
"fileName": "ArchPaladin.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Good/ArchPaladin.cs"
},
{
"name": "Silver Exalted Paladin",
"description": "Farms the Silver Exalted Paladin.",
"tags": [
"silver exalted paladin",
"dragonheart"
],
"path": "Good/SilverExaltedPaladin.cs",
"size": 3122,
"fileName": "SilverExaltedPaladin.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Good/SilverExaltedPaladin.cs"
},
{
"name": "Trading and Stuff (Dual)",
"description": "This script will complete \"Trading and Stuff (Dual)\" quest.",
"tags": [
"hollowborn oblivion blade",
"trading",
"trading and stuff",
"hollowborn",
"dual oblivion blade",
"dual"
],
"path": "Hollowborn/TradingandStuff(Dual).cs",
"size": 2651,
"fileName": "TradingandStuff(Dual).cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Hollowborn/TradingandStuff(Dual).cs"
},
{
"name": "Gifts of the Cryomancer",
"description": "This script will farm all the rewards from the quest \"Gifts of the Cryomancer\"",
"tags": [
"gifts of the cryomancer",
"staff",
"bithday"
],
"path": "Hollowborn/GiftsoftheCryomancer.cs",
"size": 1345,
"fileName": "GiftsoftheCryomancer.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Hollowborn/GiftsoftheCryomancer.cs"
},
{
"name": "Hollowborn Oblivion Blade",
"description": "This script will get Hollowborn Oblivion Blade.",
"tags": [
"hollowborn",
"oblivion",
"blade",
"summoning",
"summoning and stuff",
"lae",
"archfiend enchanted orbs"
],
"path": "Hollowborn/HollowbornOblivionBlade.cs",
"size": 3208,
"fileName": "HollowbornOblivionBlade.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Hollowborn/HollowbornOblivionBlade.cs"
},
{
"name": "null",
"description": "null",
"tags": [
"null"
],
"path": "Hollowborn/CoreHollowborn.cs",
"size": 2355,
"fileName": "CoreHollowborn.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Hollowborn/CoreHollowborn.cs"
},
{
"name": "Trading and Stuff (Single)",
"description": "This script will complete \"Trading and Stuff (Single)\" quest.",
"tags": [
"trading and stuff",
"single",
"hollowborn oblivion blade",
"hollowborn",
"oblivion",
"blade"
],
"path": "Hollowborn/TradingandStuff(single).cs",
"size": 2700,
"fileName": "TradingandStuff(single).cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Hollowborn/TradingandStuff(single).cs"
},
{
"name": "Hollowborn Reaper's Scythe",
"description": "This script will farm Hollowborn Reaper's Scythe",
"tags": [
"hollowborn",
"reaper",
"scythe",
"shadowrealm"
],
"path": "Hollowborn/HollowbornReapersScythe.cs",
"size": 1095,
"fileName": "HollowbornReapersScythe.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Hollowborn/HollowbornReapersScythe.cs"
},
{
"name": "EmpoweringItems",
"description": "null",
"tags": [
"null"
],
"path": "Nation/EmpoweringItems.cs",
"size": 1523,
"fileName": "EmpoweringItems.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/EmpoweringItems.cs"
},
{
"name": "KisstheVoid",
"description": "null",
"tags": [
"null"
],
"path": "Nation/KisstheVoid.cs",
"size": 1421,
"fileName": "KisstheVoid.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/KisstheVoid.cs"
},
{
"name": "SuppliesToSpinTheWheelofChance",
"description": "Do \"Supplies to Spin the Wheel\" [*or* swindles bilk quests if u have it avaible.]",
"tags": [
"swindles return policy",
"supplies to spin the wheel",
"swindles bilk",
"the assistant",
"nulgath",
"nation",
"supplies",
"ultra alteon",
"escherion"
],
"path": "Nation/SuppliesToSpinTheWheelofChance.cs",
"size": 7113,
"fileName": "SuppliesToSpinTheWheelofChance.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/SuppliesToSpinTheWheelofChance.cs"
},
{
"name": "VoidKnightSwordQuest",
"description": "null",
"tags": [
"null"
],
"path": "Nation/VoidKnightSwordQuest.cs",
"size": 598,
"fileName": "VoidKnightSwordQuest.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/VoidKnightSwordQuest.cs"
},
{
"name": "Dreadrock Gem Exchange (Tainted Gem Quest)",
"description": "This script will farm Tainted Gems using \"Dreadrock Gem Exhange\" quest.",
"tags": [
"tainted gem",
"dreadrock",
"dread rock",
"tainted",
"exchange",
"enntropy",
"shattered",
"polished",
"crystal"
],
"path": "Nation/DreadrockGemExchange.cs",
"size": 662,
"fileName": "DreadrockGemExchange.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/DreadrockGemExchange.cs"
},
{
"name": "NulgathLarvae",
"description": "will do \"Nulgath (Larvae) [2566]\"",
"tags": [
"nulgath",
"larvae",
"nation"
],
"path": "Nation/NulgathLarvae.cs",
"size": 569,
"fileName": "NulgathLarvae.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/NulgathLarvae.cs"
},
{
"name": "EmblemofNulgath",
"description": "null",
"tags": [
"null"
],
"path": "Nation/EmblemofNulgath.cs",
"size": 470,
"fileName": "EmblemofNulgath.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/EmblemofNulgath.cs"
},
{
"name": "TheAssistant",
"description": "null",
"tags": [
"null"
],
"path": "Nation/TheAssistant.cs",
"size": 1352,
"fileName": "TheAssistant.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/TheAssistant.cs"
},
{
"name": "Contract Exchange",
"description": "null",
"tags": [
"bamblooze vs drudgen",
"contract exchange",
"pet",
""
],
"path": "Nation/ContractExchange.cs",
"size": 4261,
"fileName": "ContractExchange.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/ContractExchange.cs"
},
{
"name": "SwindlesReturnPolicy",
"description": "null",
"tags": [
"null"
],
"path": "Nation/SwindlesReturnPolicy.cs",
"size": 2484,
"fileName": "SwindlesReturnPolicy.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/SwindlesReturnPolicy.cs"
},
{
"name": "TimeIsMoney",
"description": "null",
"tags": [
"null"
],
"path": "Nation/TimeIsMoney.cs",
"size": 1842,
"fileName": "TimeIsMoney.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/TimeIsMoney.cs"
},
{
"name": "EssenceofDefeatReagent",
"description": "null",
"tags": [
"null"
],
"path": "Nation/EssenceofDefeatReagent.cs",
"size": 491,
"fileName": "EssenceofDefeatReagent.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/EssenceofDefeatReagent.cs"
},
{
"name": "DirtyDeedsDoneDirtCheap",
"description": "null",
"tags": [
"null"
],
"path": "Nation/DirtyDeedsDoneDirtCheap.cs",
"size": 492,
"fileName": "DirtyDeedsDoneDirtCheap.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/DirtyDeedsDoneDirtCheap.cs"
},
{
"name": "New Worlds, New Opportunities",
"description": "Farms the resources of nation so instantly. Note that you must have Bounty Hunter's Drone Pet.",
"tags": [
"bounty-hunters-pet",
"pet",
"nation-farm",
"farm-resources"
],
"path": "Nation/NewWorldsNewOpportunities.cs",
"size": 795,
"fileName": "NewWorldsNewOpportunities.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/NewWorldsNewOpportunities.cs"
},
{
"name": "DragonSlayerReward",
"description": "null",
"tags": [
"null"
],
"path": "Nation/DragonSlayerReward.cs",
"size": 510,
"fileName": "DragonSlayerReward.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/DragonSlayerReward.cs"
},
{
"name": "Nation Loyalty Rewarded",
"description": "Does the Nation Loyalty Rewarded Quest to max the quest rewards.",
"tags": [
"nation loyalty rewarded",
"nulgath",
"nation",
"dark crystal shard",
"diamond of nulgath",
"diamond badge of nulgath"
],
"path": "Nation/NationLoyaltyRewarded.cs",
"size": 4239,
"fileName": "NationLoyaltyRewarded.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/NationLoyaltyRewarded.cs"
},
{
"name": "AssistingCragAndBamboozle[Mem]",
"description": "null",
"tags": [
"null"
],
"path": "Nation/AssistingCragAndBamboozle[Mem].cs",
"size": 6631,
"fileName": "AssistingCragAndBamboozle[Mem].cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/AssistingCragAndBamboozle[Mem].cs"
},
{
"name": "null",
"description": "null",
"tags": [
"null"
],
"path": "Nation/CoreNation.cs",
"size": 92449,
"fileName": "CoreNation.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/CoreNation.cs"
},
{
"name": "VoucherItemChoose",
"description": "null",
"tags": [
"null"
],
"path": "Nation/VoucherItemChoose.cs",
"size": 1095,
"fileName": "VoucherItemChoose.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Nation/VoucherItemChoose.cs"
},
{
"name": "Astravian Oracle Set",
"description": "does the follow quests to get the astravian oracle set",
"tags": [
"mourning cygnus",
"extinguished eridanus",
"quest",
"reward",
"astravian oracle set"
],
"path": "Other/AstravianOracleSet.cs",
"size": 2338,
"fileName": "AstravianOracleSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/AstravianOracleSet.cs"
},
{
"name": "Vampireof Vokun Daily",
"description": "Does the Vampireof Vokun Daily (not 100% drop)",
"tags": [
"vampireof vokun",
"daily"
],
"path": "Other/VampireofVokun.cs",
"size": 1551,
"fileName": "VampireofVokun.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/VampireofVokun.cs"
},
{
"name": "corrupt draconic paragon",
"description": "farms the corrupt draconic paragon set from Quest",
"tags": [
"corrupt draconic paragon",
"set"
],
"path": "Other/CorruptDraconicParagon.cs",
"size": 1618,
"fileName": "CorruptDraconicParagon.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/CorruptDraconicParagon.cs"
},
{
"name": "Shadow Dragon Defender",
"description": "if \"Manticore Cub Pet\" is owned, it will buy \"Shadow Dragon Defender\"",
"tags": [
"shadow dragon defender",
"manticore cub pet",
"armor"
],
"path": "Other/ShadowDragonDefender.cs",
"size": 1056,
"fileName": "ShadowDragonDefender.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/ShadowDragonDefender.cs"
},
{
"name": "Eternal Dragon Drops",
"description": "Farms \"all drops\" From Mob",
"tags": [
"eternal dragon",
"drops"
],
"path": "Other/EternalDragonDrops.cs",
"size": 2221,
"fileName": "EternalDragonDrops.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/EternalDragonDrops.cs"
},
{
"name": "Blood Guardian Set",
"description": "does the 'Blackened Incense' Quest for the blood guardian set.",
"tags": [
"blood guardian set",
"blackened incense",
"set"
],
"path": "Other/BloodGuardianSet.cs",
"size": 1663,
"fileName": "BloodGuardianSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/BloodGuardianSet.cs"
},
{
"name": "Age Of Ruin Drops",
"description": "farms all acs drops from Age Of Ruin saga maps.",
"tags": [
"age",
"ruin",
"drops"
],
"path": "Other/AgeOfRuinDrops.cs",
"size": 5824,
"fileName": "AgeOfRuinDrops.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/AgeOfRuinDrops.cs"
},
{
"name": "Shadowed War Mage Set",
"description": "Farms \"All Drops\" From Mob",
"tags": [
"shadowknight gar",
"set"
],
"path": "Other/ShadowedWarMageSet.cs",
"size": 2044,
"fileName": "ShadowedWarMageSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/ShadowedWarMageSet.cs"
},
{
"name": "Mind Breaking It In",
"description": "Farms \"All Drops\" From Quest",
"tags": [
"mind breaking it in",
"mindbreaker",
"drops"
],
"path": "Other/MindBreakingItIn.cs",
"size": 1930,
"fileName": "MindBreakingItIn.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/MindBreakingItIn.cs"
},
{
"name": "Warfury Emblem",
"description": "Farms \"Warfury Emblem\" from quest",
"tags": [
"war",
"fury",
"training",
"emblem"
],
"path": "Other/WarFuryEmblem.cs",
"size": 1229,
"fileName": "WarFuryEmblem.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/WarFuryEmblem.cs"
},
{
"name": "Jirabin Challenge Quests",
"description": "Does the Jirabin Challenge Quests",
"tags": [
"jirabin challenge",
"runedwoods",
"dethertombs",
"xiex",
"voidbattle",
"jir'abin"
],
"path": "Other/Jir'abinChallenge.cs",
"size": 6492,
"fileName": "Jir'abinChallenge.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/Jir'abinChallenge.cs"
},
{
"name": "Vampiric Knight And Blood Guardian",
"description": "Gets the Vampiric Knight And Blood Guardian Armors",
"tags": [
"vampiric knight",
"blood guardian",
"armor"
],
"path": "Other/VampiricKnightAndBloodGuardian.cs",
"size": 2071,
"fileName": "VampiricKnightAndBloodGuardian.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/VampiricKnightAndBloodGuardian.cs"
},
{
"name": "Security Plushies Quest Rewards",
"description": "farms quest rewards from `Security Plushies` [9731] in /balemorale",
"tags": [
"balemorale",
"lady laidronette cavendish",
"security plushies",
"quest",
"rewards"
],
"path": "Other/SecurityPlushiesQuestReward.cs",
"size": 1564,
"fileName": "SecurityPlushiesQuestReward.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/SecurityPlushiesQuestReward.cs"
},
{
"name": "Shadowflame War Medal",
"description": "farms \"Item\" from uest",
"tags": [
"shadowflame war medal",
"shadow medal",
"mega shadow medal"
],
"path": "Other/ShadowflameWarMedal.cs",
"size": 1594,
"fileName": "ShadowflameWarMedal.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/ShadowflameWarMedal.cs"
},
{
"name": "The Conqueror of Glacera",
"description": "This script will complete \"The Conqueror of Glacera\" [9492] quest.",
"tags": [
"glacera",
"karok",
"wings",
"fallen",
"runed",
"glaceran",
"loyalty",
"sigil",
"frigid",
"scythe",
"vengeance",
"conqueror"
],
"path": "Other/TheConquerorOfGlacera.cs",
"size": 2866,
"fileName": "TheConquerorOfGlacera.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/TheConquerorOfGlacera.cs"
},
{
"name": "coin collector set",
"description": "Farms the coin collector set from hollowhalls",
"tags": [
"coin collector",
"set"
],
"path": "Other/CoinCollectorSet[Member].cs",
"size": 1574,
"fileName": "CoinCollectorSet[Member].cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/CoinCollectorSet[Member].cs"
},
{
"name": "Weapon Reflection",
"description": "Farms \"Weapon Reflection\" From Quest",
"tags": [
"weapon reflection",
"dual wield forge",
"golden 8th birthday candle"
],
"path": "Other/WeaponReflection.cs",
"size": 1701,
"fileName": "WeaponReflection.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/WeaponReflection.cs"
},
{
"name": "DragonLord Grand Master",
"description": "farms the \"DragonLord Grand Master\" set from Quest",
"tags": [
"dragonlord grand master",
"set"
],
"path": "Other/DragonLordGrandMasterSet.cs",
"size": 1781,
"fileName": "DragonLordGrandMasterSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/DragonLordGrandMasterSet.cs"
},
{
"name": "Lore Master University",
"description": "does the Lore Master University Quests for House Items",
"tags": [
"lore master university",
"house"
],
"path": "Other/LoreMasterUniversityHouse.cs",
"size": 2575,
"fileName": "LoreMasterUniversityHouse.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/LoreMasterUniversityHouse.cs"
},
{
"name": "DeathKnightLootQuest",
"description": "This script will farm everything in DeathKnightLootChestQuest id",
"tags": [
"death",
"knight",
"loot",
"chest",
"fallendeathknight",
"accoutrements"
],
"path": "Other/DeathKnightLootQuest.cs",
"size": 2189,
"fileName": "DeathKnightLootQuest.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/DeathKnightLootQuest.cs"
},
{
"name": "Lycan Shaman Set",
"description": "farms the \"Lycan Shaman\" set from Quest",
"tags": [
"blood rage",
"lycan shaman",
"set"
],
"path": "Other/LycanShamanSet.cs",
"size": 1914,
"fileName": "LycanShamanSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/LycanShamanSet.cs"
},
{
"name": "Dragons of Yokai Drops",
"description": "farms all drops from Dragons of Yokai saga maps.",
"tags": [
"yokai",
"dragons",
"drops"
],
"path": "Other/DragonsOfYokaiDrops.cs",
"size": 5403,
"fileName": "DragonsOfYokaiDrops.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/DragonsOfYokaiDrops.cs"
},
{
"name": "Lorebowl",
"description": "Kills the mob in /punt for its drops",
"tags": [
"lorebowl",
"drops",
"punt",
"twilly"
],
"path": "Other/LoreBowl.cs",
"size": 1716,
"fileName": "LoreBowl.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/LoreBowl.cs"
},
{
"name": "Gachapon Machine",
"description": "does either \"I heard you like Gacha\" or \"Kotapon II",
"tags": [
"i heard you like gacha",
"kotapon ii"
],
"path": "Other/GachaponMachineQuests.cs",
"size": 3882,
"fileName": "GachaponMachineQuests.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/GachaponMachineQuests.cs"
},
{
"name": "Sanctified Arbiter Set",
"description": "Farms \"All Drops\" From Quest",
"tags": [
"sanctified arbiter",
"drops",
"one holy discovery"
],
"path": "Other/SanctifiedArbiter.cs",
"size": 1542,
"fileName": "SanctifiedArbiter.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/SanctifiedArbiter.cs"
},
{
"name": "Mysterious Egg",
"description": "if you own the manticore cub pet, this will farm the Mysterious Egg",
"tags": [
"mysterious egg",
"manticore cub pet",
"egg"
],
"path": "Other/MysteriousEgg.cs",
"size": 2254,
"fileName": "MysteriousEgg.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/MysteriousEgg.cs"
},
{
"name": "Treasure Hunt Quest Rewards",
"description": "This script will get the rewards from the Treasure Hunt Quest.",
"tags": [
"treasure",
"hunt",
"quest",
"rewards",
"draco con",
"bob macguffin",
"spiked slayer mace",
"drakka defender"
],
"path": "Other/TreasureHuntQuestRewards.cs",
"size": 2021,
"fileName": "TreasureHuntQuestRewards.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/TreasureHuntQuestRewards.cs"
},
{
"name": "Seven Deadly Dragons Saga Drops",
"description": "get drops from all monsters from this saga.",
"tags": [
"deadly",
"seven",
"dragons",
"drops"
],
"path": "Other/DeadlyDragonsSagaDrops.cs",
"size": 8592,
"fileName": "DeadlyDragonsSagaDrops.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/DeadlyDragonsSagaDrops.cs"
},
{
"name": "Grimskull Dungeon Pre Reqs",
"description": "This script will complete the quest prereqs to unlock Grimskull Dungeon.",
"tags": [
"grim",
"dungeon",
"grimskull",
"trolling",
"rep",
"skullcrusher",
"gaol",
"grimgaol",
"gaolcell"
],
"path": "Other/GrimDungeonPreReqs.cs",
"size": 2362,
"fileName": "GrimDungeonPreReqs.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/GrimDungeonPreReqs.cs"
},
{
"name": "celestial starmage set",
"description": "farms the starmage set from \"Star Light, Star Bright\"",
"tags": [
"starmage",
"set",
"star light",
"star bright"
],
"path": "Other/CelestialStarMageSet.cs",
"size": 1397,
"fileName": "CelestialStarMageSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/CelestialStarMageSet.cs"
},
{
"name": "Mad Weapon Crafting",
"description": "Farms \"All Drops\" From Quest",
"tags": [
"mad weapon crafting",
"drops"
],
"path": "Other/MadWeaponCrafting.cs",
"size": 1934,
"fileName": "MadWeaponCrafting.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/MadWeaponCrafting.cs"
},
{
"name": "Diabolical Warden Set",
"description": "farms the \"Diabolical Warden\" set from Quest",
"tags": [
"diabolical warden",
"set"
],
"path": "Other/DiabolicalWardenSet.cs",
"size": 1575,
"fileName": "DiabolicalWardenSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/DiabolicalWardenSet.cs"
},
{
"name": "Dark Ranger Armor",
"description": "farms the \"Dark Ranger\" set from Quest",
"tags": [
"dark ranger",
"armor",
"set"
],
"path": "Other/DarkRangerArmor.cs",
"size": 1424,
"fileName": "DarkRangerArmor.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/DarkRangerArmor.cs"
},
{
"name": "Snowball Amberarms Drops",
"description": "Farms \"All Drops\" From Quest",
"tags": [
"snowball thinks you're the best",
"drops"
],
"path": "Other/SnowballAmberarms.cs",
"size": 1253,
"fileName": "SnowballAmberarms.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/SnowballAmberarms.cs"
},
{
"name": "Mithril PvP Amulet",
"description": "Farms \"Mithril PvP Amulet\" From Mob",
"tags": [
"mitril pvp amulet",
"diamoind pvp amulet",
"pvp",
"amulet"
],
"path": "Other/MithrilPVPAmulet.cs",
"size": 920,
"fileName": "MithrilPVPAmulet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/MithrilPVPAmulet.cs"
},
{
"name": "Midnight Assassin Set",
"description": "farms the \"Midnight Assassin\" set from Quest",
"tags": [
"vampire medals",
"mega vampire medals",
"set"
],
"path": "Other/MidnightAssassinSet.cs",
"size": 2087,
"fileName": "MidnightAssassinSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/MidnightAssassinSet.cs"
},
{
"name": "Fire Avatar Favor",
"description": "Farms \"Fire Avatar's Favor\" From Mob",
"tags": [
"fire avatar's favor",
"fire avatar",
"drops"
],
"path": "Other/FireAvatarFavorFarm.cs",
"size": 1130,
"fileName": "FireAvatarFavorFarm.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/FireAvatarFavorFarm.cs"
},
{
"name": "Revontheus Set",
"description": "farms the \"Revontheus\" set from Mob",
"tags": [
"revontheus",
"undead legend",
"set"
],
"path": "Other/RevontheusSet.cs",
"size": 1355,
"fileName": "RevontheusSet.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/RevontheusSet.cs"
},
{
"name": "Elementa Dragon Slayer set",
"description": "farms the \"Elemental Dragon Slayer\" set from Quest",
"tags": [
"elemental dragon slayer",
"set"
],
"path": "Other/ElementalDragonSlayer.cs",
"size": 2298,
"fileName": "ElementalDragonSlayer.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/ElementalDragonSlayer.cs"
},
{
"name": "Master of Your Craft",
"description": "Farms \"All Drops\" From Quest",
"tags": [
"master of your craft",
"drops"
],
"path": "Other/MasterofYourCraft.cs",
"size": 2227,
"fileName": "MasterofYourCraft.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/MasterofYourCraft.cs"
},
{
"name": "Daily Gifts",
"description": "This will get all of the available gifts upto this date.",
"tags": [
"daily-gifts",
"rare-items"
],
"path": "Other/0CurrentDailyGifts.cs",
"size": 21088,
"fileName": "0CurrentDailyGifts.cs",
"downloadUrl": "https://raw.githubusercontent.com/BrenoHenrike/Scripts/Skua/Other/0CurrentDailyGifts.cs"
},
{
"name": "Grim Dark Set",
"description": "farms the \"Grim Dark\" set from Quest",
"tags": [
"doom",