diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/006-6/core.txt | 2 | ||||
-rw-r--r-- | npc/006-7/ctrl.txt | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/npc/006-6/core.txt b/npc/006-6/core.txt index b10bf24d9..fb303d469 100644 --- a/npc/006-6/core.txt +++ b/npc/006-6/core.txt @@ -6,7 +6,7 @@ end; OnTouch: - //if (!getq(CandorQuest_Area1)) goto L_Reject; + if (!(getq(General_EasterEggs) & EE_SNOWMAN)) goto L_Reject; //if (!getq(CandorQuest_Area2)) goto L_Reject; //if (!getq(CandorQuest_Area3)) goto L_Reject; if (getq(General_Narrator) < 17) goto L_Reject; // Frostia Arc must be finished diff --git a/npc/006-7/ctrl.txt b/npc/006-7/ctrl.txt index 3dd1aae15..59ca902d1 100644 --- a/npc/006-7/ctrl.txt +++ b/npc/006-7/ctrl.txt @@ -14,6 +14,7 @@ OnRw: getexp 1000000, 0; Mobpt += 10000; dispbottom l("Der Schneemann has been defeated: %s Monster Points gained.", fnum(10000)); + RegEasterEgg(EE_SNOWMAN, 25); end; } |