-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmmquest.json
More file actions
3583 lines (3583 loc) · 154 KB
/
mmquest.json
File metadata and controls
3583 lines (3583 loc) · 154 KB
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
{
"questArrayList": [
{
"questName": "Tutorial",
"questNumber": "Tutorial",
"questDescription": "",
"questCompleteScores": [],
"questReqs": [],
"questValues": {
"10": "Spoke to Nurse Deidre",
"11": "Walked across the Welcome broadcast, head outside",
"12": "Head to Murano",
"13": "Head to Murano",
"14": "Head to Murano",
"15": "Head to Murano",
"16": "Spoke to Muradi, see Reginald downstairs and run Labs",
"17": "Finished Labs, return to Sierhaven",
"18": "Returned to lobby, see Reginald",
"19": "Spoke to Reginald, see Sybil",
"20": "Spoke to Sybil to end Tutorial"
}
},
{
"questName": "A Crown of Topaz",
"questNumber": "Quest01",
"questDescription": "Quest Start: Aimee (-761 106 22)",
"questCompleteScores": [
6
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Aimee for the first time",
"2": "Speaking to Aimee for the first time",
"3": "Speaking to Aimee for the first time",
"4": "Speaking to Aimee for the first time",
"5": "Returned the Topaz / Speak to Aimee",
"6": "Quest Complete"
}
},
{
"questName": "A Crown of Majesty",
"questNumber": "Quest01",
"questDescription": "Quest Start: Aimee (-761 106 22)",
"questCompleteScores": [
13
],
"questReqs": [
"A Crown of Topaz"
],
"questValues": {
"6": "Unstarted",
"7": "Speaking to Aimee to receive quest",
"8": "Speaking to Aimee to receive quest",
"9": "Speaking to Aimee to receive quest",
"10": "Speaking to Aimee to receive quest",
"11": "Speaking to Aimee to receive quest",
"12": "Returned jewels / speak to Aimee",
"13": "Quest Complete"
}
},
{
"questName": "Bandit Troubles",
"questNumber": "Quest02",
"questDescription": "Quest Start: Octavius (-673 108 71)",
"questCompleteScores": [
8,
12
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Octavius to receive quest",
"2": "Speaking to Octavius to receive quest",
"3": "Speaking to Octavius to receive quest",
"4": "Speaking to Octavius to receive quest",
"5": "Returned caravan loot ot Octavius",
"8": "Quest Complete (Bad Path)",
"9": "Chose to report to Murano",
"10": "Speaking to Murano",
"11": "Speaking to Murano",
"12": "Quest Complete (Good Path)"
}
},
{
"questName": "Mages Legacy",
"questNumber": "Quest03",
"questDescription": "Quest Start: Vargos (-735 155 116)",
"questCompleteScores": [
21
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Vargos",
"2": "Speaking to Vargos",
"3": "Speaking to Vargos",
"4": "Speaking to Vargos",
"5": "Speaking to Vargos",
"6": "Speaking to Vargos",
"7": "Speaking to Vargos",
"8": "Speaking to Vargos",
"9": "Tasked to find Ezariah\u0027s notes",
"10": "Returned notes to Vargos",
"11": "Tasked to go to the office on the roof",
"-4: -4 (Yes, negative. Don’t ask)": "Puzzle done, but dc’d before commands finished. Return to Vargos to get to 13 or redo puzzle to get to -5",
"-5: -5 (Yes, negative. Don\u0027t ask)": "Completed puzzle on roof / Return to Vargos",
"13": "Tasked to find Hermy (-320, 92, 340)",
"14": "Got gloop from witch’s village (-390, 95, 400) and gave them to Hermy",
"15": "Received translated notes from Hermy",
"21": "Quest Complete"
}
},
{
"questName": "The Staff",
"questNumber": "Quest04",
"questDescription": "Quest Start: Chest (180 95 -79)",
"questCompleteScores": [
1
],
"questReqs": [
"Mages Legacy",
"Decryption Puzzle completed",
"a Carved Staff in inventory can be found in starting chest"
],
"questValues": {
"0": "Unstarted; decryption puzzle not completed",
"1": "Decryption puzzle completed; quest may now be started",
"2": "Quest started; Take a Carved Staff to the Water Shrine or Amplified Water Shrine and step on the pressure plate (-263 93 -36)",
"3": "Take a Water Staff to the Earth Shrine or Amplified Earth Shrine and step on the pressure plate (284 64 219)",
"4": "Take a Mud Staff to the Fire Shrine or Amplified Fire Shrine and step on the pressure plate (-255 93 134)",
"5": "Take a Clay Staff to the Air Shrine or Amplified Air Shrine and step on the pressure plate (484 139 -4)",
"6: 6+ without quest complete advancement": "Head to the end of the Cave of Secrets with an Elemental Staff and step on the pressure plates (344 56 -172)",
"6: 6+ with quest complete advancement": "Quest Complete"
}
},
{
"questName": "The Staff",
"questNumber": "Quest04",
"questDescription": "Quest Start: Chest (180 95 -79)",
"questCompleteScores": [],
"questReqs": [
"Black Willows score of 1 or higher",
"The Staff Quest04 of 6",
"either an Elemental Staff or Carved Staff in inventory Carved Staff in starting chest"
],
"questValues": {
"0": "Unstarted",
"1": "Unstarted",
"2": "Unstarted",
"3": "Unstarted",
"4": "Unstarted",
"5": "Unstarted",
"6": "Unstarted",
"7": "Open quest start chest to progress",
"8": "Take a Carved Staff or Elemental Staff to the Amplified Water Shrine and step on the pressure plate (-263 93 -36)",
"9": "Take a Torrent Staff to the Amplified Earth Shrine and step on the pressure plate (284 64 219)",
"10": "Take a Mudslide Staff to the Amplified Fire Shrine and step on the pressure plate (-255 93 134)",
"11": "Take an Argil Staff to the Amplified Air Shrine and step on the pressure plate (484 139 -4)",
"12: 12 without quest complete advancement": "Head to the end of the Cave of Secrets and step on the pressure plates (344 56 -172)",
"12: 12 with quest complete advancement": "Quest Complete"
}
},
{
"questName": "Buried Blade",
"questNumber": "Quest05",
"questDescription": "Quest Start: Blackjack Stan (-103 96 -88)",
"questCompleteScores": [
9,
11,
21
],
"questReqs": [
"Bandit Troubles Bad Path"
],
"questValues": {
"0": "Unstarted",
"1": "Unstarted",
"2": "Speaking to Stan",
"3": "Speaking to Stan",
"4": "Speaking to Stan",
"5": "Quest given / Key given",
"8": "Returned sword to Stan",
"9": "Quest Complete (Stan path)",
"10": "Given sword to Rosie",
"11": "Quest Complete (Rosie path)",
"20": "Non-canon Quest started / Key given",
"21": "Non-canon Quest Complete"
}
},
{
"questName": "Missing Soldiers",
"questNumber": "Quest06",
"questDescription": "Quest Start: Sergeant Sigrun (-137 99 -96)",
"questCompleteScores": [
11,
24
],
"questReqs": [
"Bandit Troubles Good Path"
],
"questValues": {
"0": "Unstarted",
"1": "Unstarted",
"4": "Quest started / Tasked to find soldiers",
"5": "Returned clothes to Sigrun",
"9": "Tasked to find Kim",
"10": "Returned Kim\u0027s clothes",
"11": "Quest Complete",
"20": "Non-Canon Quest started",
"21": "Non-Canon returned clothes to Sigrun",
"22": "Non-Canon tasked to find Kim",
"23": "Non-Canon returned Kim\u0027s clothes",
"24": "Non-Canon Quest Complete"
}
},
{
"questName": "The Plague",
"questNumber": "Quest07",
"questDescription": "Quest Start: Dr Laurie (-108 95 -114)",
"questCompleteScores": [
24,
25
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Unstarted",
"2": "Unstarted",
"3": "Unstarted",
"4": "Unstarted",
"5": "Quest given / find C\u0027Taz",
"6": "Talked to C\u0027Taz / find the 3 sets of items",
"7": "Unused legacy scores. Act as score \u003d 6",
"8": "Unused legacy scores. Act as score \u003d 6",
"9": "Unused legacy scores. Act as score \u003d 6",
"10": "Unused legacy scores. Act as score \u003d 6",
"11": "Unused legacy scores. Act as score \u003d 6",
"12": "Returned the 3 sets of items. Speak to C\u0027Taz",
"13": "Unused legacy scores",
"14": "Unused legacy scores",
"15": "Unused legacy scores",
"16": "Chose 5 Cure dose path",
"17": "Chose 4 Cure and 1 Potion path",
"23": "Old Ending - MUST SPEAK TO LAURIE",
"24": "Good Path Quest Complete",
"25": "Bad Path Quest Complete"
}
},
{
"questName": "Fountain of Miracles",
"questNumber": "Quest08",
"questDescription": "Quest Start: Drake (592 98 199)",
"questCompleteScores": [
11
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Drake",
"2": "Quest given / find fountain",
"3": "Killing spiders (1 score given per spider kill)",
"4": "Killing spiders (1 score given per spider kill)",
"5": "Killing spiders (1 score given per spider kill)",
"6": "Killing spiders (1 score given per spider kill)",
"7": "Killing spiders (1 score given per spider kill)",
"8": "Killing spiders (1 score given per spider kill)",
"9": "Return to the fountain",
"10": "Return to Drake",
"11": "Quest Complete"
}
},
{
"questName": "Runaway Pet",
"questNumber": "Quest09",
"questDescription": "Quest Start: Leonard (613 98 114)",
"questCompleteScores": [
6
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Leonard",
"2": "Speaking to Leonard",
"3": "Speaking to Leonard",
"4": "Quest given / Find Snuggles",
"5": "BUGGED SCORE - Manually set score to 4",
"6": "Returned Snuggles / Quest Complete"
}
},
{
"questName": "Pyromania",
"questNumber": "Quest10",
"questDescription": "Quest Start: Carbocius (608 102 156)",
"questCompleteScores": [
4
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Carbocious",
"2": "Speaking to Carbocious",
"3": "Quest given / find magma items",
"4": "Returned items / Quest complete"
}
},
{
"questName": "Of Monks and Magic",
"questNumber": "Quest11",
"questDescription": "Quest Start: Captain Tobias (565 96 124)",
"questCompleteScores": [
11
],
"questReqs": [
"Mages Legacy"
],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Captain Tobias",
"2": "Quest given / find monks",
"3": "Killing Sons (1 score given per kill)",
"4": "Killing Sons (1 score given per kill)",
"5": "Killing Sons (1 score given per kill)",
"6": "Killing Sons (1 score given per kill)",
"7": "Killing Sons (1 score given per kill)",
"8": "Killing Sons (1 score given per kill)",
"9": "Killing Sons (1 score given per kill)",
"10": "Enough Sons killed, speak to Abbot",
"11": "Quest complete"
}
},
{
"questName": "Sons of the Forest",
"questNumber": "Quest12",
"questDescription": "Quest Start: Captain Tobias (565 96 124)",
"questCompleteScores": [
11
],
"questReqs": [
"Of Monks and Magic"
],
"questValues": {
"0": "Unstarted",
"1": "Unstarted",
"2": "Speaking to Tobias",
"3": "Speaking to Tobias",
"4": "Speaking to Tobias",
"5": "Speaking to Tobias",
"6": "Quest given / find Sons hideout",
"7": "Curse given at the Sons hideout",
"8": "Talk to Vargos, ask “So, now what?”",
"11": "Curse cleared / Quest Complete"
}
},
{
"questName": "Siege of Highwatch",
"questNumber": "Quest13",
"questDescription": "Quest Start: Commander Haynes (1198 131 -106)",
"questCompleteScores": [],
"questReqs": [
"Sons of the Forest",
"The Plague"
],
"questValues": {
"0: 0 through 1": "Unstarted",
"4": "Quest given / Fight off attack",
"5": "Ghasts killed, take out Summoning Stone",
"6": "Stone destroyed / talk to Haynes",
"7": "Speak to Warden in prison below Highwatch",
"8": "Spoken to Warden / make Truth Potion",
"12": "Potion made / Return to Warden",
"13": "Speaking to Warden",
"14": "Speaking to Warden",
"15": "Speaking to Warden",
"15: 15 + tag \"Quest13Done\"": "Quest Complete"
}
},
{
"questName": "A Pirates Life",
"questNumber": "Quest14",
"questDescription": "Quest Start: Levyn (-809 101 82)",
"questCompleteScores": [
10
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Unstarted",
"2": "Unstarted",
"3": "Unstarted",
"4": "Quest given / Peg Leg",
"5": "Peg Leg given to Levyn",
"8": "Tasked to find Parrot",
"9": "Parrot given to Levyn",
"10": "Quest Complete"
}
},
{
"questName": "Starry Night",
"questNumber": "Quest15",
"questDescription": "Quest Start: Mayleen (-118 109 -12)",
"questCompleteScores": [
9
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Unstarted",
"2": "Speaking to Mayleen",
"3": "Speaking to Mayleen",
"4": "Speaking to Mayleen",
"5": "Quest given / find lense",
"6": "Lense found",
"7": "Lense given to Mayleen (Only score puzzle works)",
"8": "Puzzle Complete / Return to Mayleen",
"9": "Quest Complete"
}
},
{
"questName": "The Salmon",
"questNumber": "Quest16",
"questDescription": "Quest Start: Dockmaster (691 71 458)",
"questCompleteScores": [
14
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Dockmaster",
"2": "Speaking to Dockmaster",
"6": "Quest given / Talk to Quentin",
"7": "Speaking to Quentin",
"8": "Tasked to get Axtan Ale",
"10": "Given Quentin Axtan Ale / Find Salmon",
"12": "Caught Salmon / Return to Dockmaster",
"13": "Caught Salmon / Return to Dockmaster",
"14": "Quest Complete"
}
},
{
"questName": "A Dish to Die For",
"questNumber": "Quest17",
"questDescription": "Quest Start: Claude (734 74 460)",
"questCompleteScores": [
12,
13
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Quest given / Go to Tlaxan farm (Also sets the score of Quest17B\u003d2 for some reason)",
"2": "Given meat to Claude / Find beef in Highlands",
"3": "Given beef to Claude / Find meat in Cave",
"4": "Given mystery meat / Go upstairs",
"5": "Butchered Terry / prepare for fight",
"6": "Saved Terry / prepare for fight",
"7": "Fight Claude",
"8": "Fight Claude",
"10": "Died in Claude fight / Return to him",
"11": "Beat Claude in fight / Return to him",
"12": "Quest Complete (Died to Claude)",
"13": "Quest Complete (Beat Claude)"
}
},
{
"questName": "Vault of Glass",
"questNumber": "Quest18",
"questDescription": "Quest Start: Postman (1150 124 -129)",
"questCompleteScores": [
11
],
"questReqs": [
"Bandit Troubles"
],
"questValues": {
"0": "Unstarted",
"1": "Got mail from Postman / Speak to Argent",
"2": "Speaking to Argent",
"3": "Quest given / Find Carlton",
"4": "Found Carlton / Kill thugs",
"5": "Killed thugs / Speak to Carlton",
"6": "Find Octavius\u0027 warehouse",
"7": "Give guard correct name",
"8": "Gave guard the correct name (Bruce)",
"9": "Dutches intercepts you / Return to Argent",
"10": "Speaking to Argent",
"11": "Quest Complete"
}
},
{
"questName": "Nelfines Curse",
"questNumber": "Quest19",
"questDescription": "Quest Start: Nelfine (-775 103 -6)",
"questCompleteScores": [
7
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Nelfine",
"2": "Speaking to Nelfine",
"3": "Quest given / Find Overgrown Laboratory",
"4": "Puzzle complete / Return to Nelfine",
"5": "Configured Sample given to Nelfine",
"6": "Speaking to Nelfine",
"7": "Quest Complete"
}
},
{
"questName": "Flash in the Pan",
"questNumber": "Quest20",
"questDescription": "Quest Start: Flashy (-797 100 28)",
"questCompleteScores": [
4
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Quest given / Start race",
"2": "Finished race / Speak to Flashy",
"4": "Quest Complete"
}
},
{
"questName": "Unveiled",
"questNumber": "Quest21",
"questDescription": "Quest Start: Josiah (1175 143 -120)",
"questCompleteScores": [
20
],
"questReqs": [
"Siege of Highwatch",
"Pyromania",
"Soul of the Forest",
"completion of the Yellow dungeon"
],
"questValues": {
"0: 0 through 1": "Unstarted",
"2": "Quest given / gather Mistleaves from Cursed Forest and Wand of Blood from Graveyard",
"3": "Given Mistleaves to Josiah / Talk to Haynes",
"4": "Find Katherine",
"5": "Speaking to Katherine",
"6": "Search out Carbocious",
"7": "Find Carbocious\u0027 old lab",
"11": "Puzzle Complete / Given Hyper TNT",
"12": "Given TNT to Katherine / Return to Josiah",
"13": "Raiding Verdant",
"14": "Raiding Verdant",
"15": "Raiding Verdant",
"20": "Boss beaten / Quest Complete",
"100": "Speaking to Josiah about Hope",
"101": "Speaking to Josiah about Hope",
"102": "Speaking to Josiah about Hope",
"103": "Hope applied to an item"
}
},
{
"questName": "The Alchemy Labs",
"questNumber": "Quest22 RETIRED QUEST",
"questDescription": "Quest Start: Sir Reginald (-749 94 -83)",
"questCompleteScores": [],
"questReqs": [],
"questValues": {
"2": "Automatically set upon doing Labs in the tutorial."
}
},
{
"questName": "Winds of War",
"questNumber": "Quest23",
"questDescription": "Quest Start: Bhairavi (-113 107 -155)",
"questCompleteScores": [
16
],
"questReqs": [
"Mages Legacy"
],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Bhairavi",
"2": "Quest given",
"3": "Use flower to find ghosts",
"4": "Spoke to Gypsum / Find Darius",
"5": "Spoke to Darius / Find Rethus",
"6": "Speaking to Rethus",
"7": "Spoke to Rethus / Go to Ruined Mansion",
"8": "Completed puzzle / Return item to Bharavi",
"10": "Given items to Bhairavi",
"11": "Speaking to Bhairavi",
"12": "Speaking to Bhairavi",
"13": "Speak to Bhairavi to begin race",
"14": "Race complete",
"15": "Speaking to Bhairavi\u0027s Projection",
"16": "Quest Complete",
"17": "Post Quest Dialogue with Bhairavi (White dungeon completed) (White done)",
"18": "Post Quest Dialogue with Bhairavi (White dungeon completed) (White done)",
"19": "Received Book from Vargos"
}
},
{
"questName": "Clear As Glass",
"questNumber": "Quest24",
"questDescription": "Quest Start: Nelfine (-775 103 -6)",
"questCompleteScores": [
20
],
"questReqs": [
"Nelfines Curse"
],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Nelfine",
"2": "Quest given / Go to Highwatch",
"3": "Spoken to Ursan / Find Arian\u0027s office",
"4": "Thief beaten / Get book / Go to Arian",
"5": "Unused",
"6": "Speaking to Arian",
"7": "Speaking to Arian",
"8": "Spoke to Arian / Return to Nelfine",
"9": "Speaking to Nelfine",
"10": "Given book / Return to Arian",
"11": "Speaking to Arian",
"12": "Seek out the Overgrown Laboratory",
"13": "Found book in destroyed Lab / Go to Moist Ruins",
"14": "Memory 1 completed",
"15": "Memory 2 completed",
"16": "Memory 3 completed / Start Boss fight",
"18": "Boss defeated / Speak to Nelfine",
"19": "Speaking to Nelfine",
"20": "Quest Complete"
}
},
{
"questName": "Beasts of Men",
"questNumber": "Quest25",
"questDescription": "Quest Start: Bhairavi (-113 107 -155)",
"questCompleteScores": [
12
],
"questReqs": [
"Winds of War",
"White score of at least 1"
],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Bhairavi",
"2": "Speaking to Bhairavi",
"3": "Quest given / find Pten",
"4": "Speaking to Pten",
"5": "Speaking to Pten",
"6": "Speaking to Pten",
"7": "Find items in Beast camps",
"8": "Items given to Pten",
"9": "Crypt opened / Enter",
"Tag \"Siershen\"": "Completed Simon puzzle (NOTE: no scoreboard value association)",
"Tag \"Selxem\"": "Completed Alchemy puzzle (NOTE: no scoreboard value association)",
"Tag \"Cyrar\"": "Completed Archery puzzle (NOTE: no scoreboard value association)",
"Tag \"Arvaya\"": "Completed Combat challenge (NOTE: no scoreboard value association)",
"10": "Spoke to Pten with all Tags / Enter tomb",
"Tag \"ZanilBook\"": "Found book in Tomb (NOTE: no scoreboard value association)",
"11": "Spoke to Wexley in Orange lobby with ZanilBook tag",
"12": "Quest Complete",
"13": "Post Quest Dialogue with Bhairavi (Orange Dungeon completed)(Orange Done)",
"14": "Post Quest Dialogue with Bhairavi (Orange Dungeon completed)(Orange Done)"
}
},
{
"questName": "Starrier Night",
"questNumber": "Quest26 strap in this ones a long one",
"questDescription": "Quest Start: Montana (728 106 421)",
"questCompleteScores": [
43,
67
],
"questReqs": [
"Starry Night",
"Bandit Troubles Bad Path to unlock Bad Path"
],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Montana",
"2": "Quest given / Find Mayleen",
"3": "Speaking to Mayleen",
"4": "Find lense in basement",
"5": "Completed Puzzle 1",
"6": "Found lens in storage room",
"8": "Given lens to Mayleen",
"9": "Find lens at Fishing Huts",
"10": "Completed Puzzle 2",
"11": "Found lens in Fishing Huts basement",
"13": "Given lens to Mayleen",
"14": "Find Gaius",
"15": "Speaking to Gaius",
"16": "Given lens from Gaius / Return to Mayleen",
"19": "Lens taken by guard / Talk to Mayleen",
"20": "Return to Gaius",
"21": "Speaking to Gaius",
"22": "Speaking to Gaius",
"23": "Puzzle 3 complete",
"24": "Lens found in vault",
"26": "Given lens to Gaius",
"27": "Spoke to Gaius / Return to Mayleen",
"29": "Given lens to Mayleen",
"30": "Spoke to Mayleen / Return to Montana",
"31": "Giving lenses to Montana",
"32": "Giving lenses to Montana",
"33": "Giving lenses to Montana",
"34": "Giving lenses to Montana",
"35": "Giving lenses to Montana",
"36": "Giving lenses to Montana",
"37": "Giving lenses to Montana",
"38": "Giving lenses to Montana",
"39": "Giving lenses to Montana",
"40": "Giving lenses to Montana",
"41": "Giving lenses to Montana",
"42": "Giving lenses to Montana",
"43": "Quest Complete (Bad Path)",
"45": "Spoke to Gaius / Listen in",
"46": "Listened in to Gaius / Return to Mayleen",
"47": "Speaking to Mayleen",
"48": "Speaking to Mayleen",
"49": "Spoke to Mayleen / Return to Gaius\u0027 tower",
"50": "Puzzle 3 completed",
"51": "Stole lens from Gaius / Return to Mayleen",
"53": "Given lens to Mayleen",
"54": "Spoke to Mayleen / Return to Montana",
"55": "Giving lenses to Montana",
"56": "Giving lenses to Montana",
"57": "Giving lenses to Montana",
"58": "Giving lenses to Montana",
"59": "Giving lenses to Montana",
"60": "Giving lenses to Montana",
"61": "Giving lenses to Montana",
"62": "Giving lenses to Montana",
"63": "Giving lenses to Montana",
"64": "Giving lenses to Montana",
"65": "Giving lenses to Montana",
"66": "Giving lenses to Montana",
"67": "Quest Complete (Good Path)"
}
},
{
"questName": "Bane of the Bakers",
"questNumber": "Quest27",
"questDescription": "Quest Start: Stefan (-865 104 31)",
"questCompleteScores": [
5
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speak to the Head Baker (-811 102 85)",
"2": "Report back to Stefan",
"3": "Enter the Baker\u0027s kitchen and get the recipe. (button to enter at -805 98 107, chest at -703 77 159) The chest sets the score.",
"4": "Return to Stefan with the recipe",
"5": "Quest Complete"
}
},
{
"questName": "A Crown of Madness",
"questNumber": "Quest28",
"questDescription": "Quest Start: Antoine (-766 107 130)",
"questCompleteScores": [
15
],
"questReqs": [
"Winds of War",
"A Crown of Majesty",
"Completion of the White dungeon"
],
"questValues": {
"0": "Unstarted",
"1: 1 through 2": "Talk to Antoine in the Academy",
"3": "Talk to Aimee the Jeweler",
"4": "Report back to Antoine",
"5": "Talk to the Royal Cartographer (Alchemist Building)",
"6": "Head to Haunted Mine. Enter quest instance area. Solve puzzle, Get Opal.",
"7": "Escape the opal mineshaft and defeat the ambush",
"8": "Talk to Antoine",
"9": "Bring the Opal to Orson the blacksmith",
"10": "Bring the Ugly Opal Crown to Aimee",
"11": "Talk to Aimee",
"12": "Track down the cursed crown via race/boss fight",
"13": "Talk to the King and the Royal Translator",
"14": "Talk to the Aimee",
"15": "Quest Complete"
}
},
{
"questName": "Roots of the Plague",
"questNumber": "Quest29",
"questDescription": "Quest Start: Bhairavi (-113 107 -155)",
"questCompleteScores": [],
"questReqs": [
"Beasts of Men",
"The Plague",
"Orange score of at least 1"
],
"questValues": {}
},
{
"questName": "Words Upon Hushed Lips",
"questNumber": "Quest30",
"questDescription": "Quest Start: Dimitri (-783 135 -42)",
"questCompleteScores": [
7
],
"questReqs": [
"TotalLevel 3"
],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Dimitri",
"2": "Speaking to Dimitri",
"3": "Quest given / Go to Axtan",
"4": "Given Axtan book to Dimitri / Go to Anthill",
"5": "Given Anthill book to Dimitri / Go to Nyr Lab",
"6": "Given Nyr Lab book to Dimitri",
"7": "Quest Complete"
}
},
{
"questName": "A Crew to Remember",
"questNumber": "Quest31",
"questDescription": "Quest Start: Captain Indigo (683 76 491)",
"questCompleteScores": [
14
],
"questReqs": [
"A Pirates Life",
"Optional Requirement Starrier Night for some different dialog"
],
"questValues": {
"0": "Unstarted",
"1": "Speak to Levyn",
"2": "Speak to Levyn below deck in Lowtide",
"3: 3 through 4": "Speak to Sumona in the Lowtide Library",
"5": "Find Captain Bijou’s spyglass in the Grand Maw and take it to Levyn",
"6": "Take the message from Levyn to the Royal Cartographer in Sierhaven",
"7": "Follow the coordinates to the Navigator and beat the hungry pirate",
"8": "Speak to Izzy (The Navigator)",
"9": "Speak to Izzy below deck in Lowtide",
"10": "Buy the Beginner’s Guide to Smuggling and put it in the middle of the chest in the Nyr well. Pearls is the password, talk to Samwell",
"11": "Put the goods in the middle of the drop off point in the Murky Maze",
"12": "Return and talk to Samwell",
"13": "Talk to Captain Indigo in Lowtide",
"14": "Quest Complete"
}
},
{
"questName": "Scars of Magic",
"questNumber": "Quest32",
"questDescription": "Quest Start: Dimitri (-783 135 -42)",
"questCompleteScores": [
15
],
"questReqs": [
"Words Upon Hushed Lips",
"Of Monks and Magic",
"Roots of the Plague score of at least 17",
"Magenta score of at least 1"
],
"questValues": {
"0": "Unstarted",
"1": "Unstarted",
"2": "Speak to Deranged Alchemist downstairs",
"3": "Speak to Deranged Alchemist downstairs",
"4": "Speak to Keller at 885/-267",
"5": "Find a Logbook within the Collapsed Tower + Return to Keller",
"6": "Speak to Antigone within Seirshen’s study in Velara",
"7": "Speak to Keller with the Temporal Crystal from the Puzzle",
"8": "Ask Keller to amplify the Collapsed Tower",
"9": "Head through the basement of the amplified Collapsed Tower and solve the puzzle there",
"11": "Head through the newly opened door in the Collapsed Tower’s basement. Speak to Wrangler Sedol.",
"12": "Head through the hole in the wall and fight the boss",
"13": "Talk to Bhairavi in the Creeper Farm",
"14": "Talk to Brother Selim in the Light Blue Lobby",
"15": "Quest Complete"
}
},
{
"questName": "Soul of the Forest",
"questNumber": "Quest33",
"questDescription": "Quest Start: Bhairavi (-113 107 -155)",
"questCompleteScores": [
11
],
"questReqs": [
"Scars of Magic",
"Siege of Highwatch",
"Completion of the LB Dungeon"
],
"questValues": {
"0": "Unstarted",
"1": "Spoken to Bhairavi, directed to Highwatch",
"2": "Went to Highwatch jail, directed to Verdant",
"3": "Returned relic, speaking to Bhairavi",
"4": "Spoke to Bhairavi, directed to Haynes",
"5": "Spoke to Haynes, directed to Temple to Kaul",
"6": "Completed puzzle, need to start ambush",
"6: 6 + \"Ambush\" tag": "Currently fighting ambush",
"7": "Completed ambush, talking to Bhairavi",
"8": "Talked to Bhairavi, directed to Cursed Forest",
"9": "Fighting Boss in fake Yellow lobby",
"10": "Boss complete, talk to Brayllur",
"11": "Quest Complete",
"12": "Bhairavi post quest dialogue",
"13": "Bhairavi post quest dialogue"
}
},
{
"questName": "Memories of Battle",
"questNumber": "Quest34",
"questDescription": "Quest Start: Jeremiah (-923 107 -103)",
"questCompleteScores": [
16
],
"questReqs": [
"Lost in My Mind",
"Completion of Wave 10 of the Arena"
],
"questValues": {
"0": "Unstarted",
"1": "Spoken to Jeremiah, directed to the Arena Shop",
"2": "Talked to Jeremiah in the shop, sent to get Key, return to Jeremiah",
"3": "Talked to Jeremiah again, sent to the employee quarters to investigate",
"4": "Completed the name puzzle, head into the Beast Pens.",
"5": "Pulled all the levers, entered the Dark Knight ambush",
"6": "Found all 4 trapped villagers, teleported to the copy of the office rooms.",
"7": "Talking with Yeigar",
"8": "Finished talking with Yeigar, go into the cage behind him.",
"9": "Talking to Jeremiah",
"10": "Talking to Yeigar in the arena lobby",
"11": "Talking to Yeigar in the arena lobby",
"12": "Talking to Yeigar in the arena lobby",
"12: 12 + \"Q34Boss\" tag": "Actively in the boss fight",
"13": "Boss fight complete, in the TRUTH room",
"14": "Talking to Jeremiah after opening the Memory Vault door",
"15": "Talking to Jeremiah after opening the Memory Vault door",
"16": "Quest complete"
}
},
{
"questName": "Supply and Demand",
"questNumber": "Quest35",
"questDescription": "Quest Start: Buildmaster Jr. (-779 106 21)",
"questCompleteScores": [
11
],
"questReqs": [],
"questValues": {
"0": "Unstarted",
"1": "Speaking to Buildmaster Jr",
"2": "Quest given / Get tempered glass",
"3": "Given Glass to Jr / Get hunters arrows",
"4": "Given Arrows to Jr / Get ice chest",
"5": "Return to Jr / Fill chest",
"6": "Return to Jr",
"8": "Head to Pauline in Nyr",
"9": "Given package to Pauline / Return to Jr",
"10": "Given Receipt to Jr",
"11": "Quest Complete",
"12": "Post Quest Dialogue with Jr"
}
},
{
"questName": "A Study In Crimson",
"questNumber": "Quest36",
"questDescription": "Quest Start: Jeremiah (Hit button at -917 93 -161, then hit button at -923 86 -125, then speak to Jeremiah)",
"questCompleteScores": [
28
],
"questReqs": [
"Memories of Battle",
"Soul of the Forest",
"Unveiled",
"Shurimas Big Day Off",
"1 clear of any mode of Ephemeral Corridors"
],
"questValues": {
"0": "Unstarted",
"1": "Speak to Jeremiah in the Memory Vault",
"2": "Speak to Jeremiah in the Memory Vault",
"3": "Speak to Jeremiah in the Memory Vault",
"4": "Speak to Jeremiah in the Memory Vault",
"5": "Click the player head at -924 86 -134",
"6": "Make your way to Jeremiah, speak to him (repeat 5 if you leave)",
"7": "Make your way through the POI. Speak to Jeremiah (repeat 5 if you leave)",
"8": "Continue speaking to Jeremiah, fight a boss (repeat 5 if you leave)",
"9": "Speak to Jeremiah (repeat 5 if you leave)",
"10": "Speak to Max, sign a contract (repeat 5 if you leave)",
"11": "Speak to Max, sign a contract (repeat 5 if you leave)",
"12": "Speak to Max, sign a contract (repeat 5 if you leave)",
"13": "Speak to Jeremiah in the Memory Vault",
"14": "Click the player head at -924 86 -136, then speak to Max",
"15": "Continue speaking to max (repeat 14 if you leave)",
"16": "Get a drop from each of the four types of boss and talk to Max (click the head mentioned in 14 if you leave)",
"17": "Speak to Max, fight a boss, sign a contract (click the head mentioned in 14 if you leave)",
"18": "Speak to Jeremiah in the Memory Vault",
"19": "Speak to Jeremiah in the Memory Vault",
"20": "Click the player head at -918 86 -134, speak to Jeremiah",