diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/017-1/roger.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/017-1/roger.txt b/npc/017-1/roger.txt index 0cd85da62..bc8043b86 100644 --- a/npc/017-1/roger.txt +++ b/npc/017-1/roger.txt @@ -30,7 +30,11 @@ L_GetRead: goto L_Poor; Zeny = (Zeny-1); mesc l("You are handed the Land of Fire Gazette. You look at the headline..."); - mesc l("...but it is written in Mananese, a language you know nothing about."); + if (!getskilllv(TMW2_ANCIENTLANGUAGES)) { + mesc l("...but it is written in Mananese, a language you know nothing about."); + } else { + mesc l("...but it is saying some stuff about a merge which happened literally eons ago."); + } next; mesc l("You toss the paper in the trash."); close; |