diff options
-rw-r--r-- | npc/006-10/logic.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/006-10/logic.txt b/npc/006-10/logic.txt index 1e047e2dd..931a387a7 100644 --- a/npc/006-10/logic.txt +++ b/npc/006-10/logic.txt @@ -4,6 +4,8 @@ // Description: // Crazyfefe's Shrine (lore bits) +006-10 mapflag zone MMO + 006-10,46,45,0 script #00610WA NPC_HIDDEN,0,3,{ end; OnTouch: @@ -142,9 +144,11 @@ OnInit: 006-10,33,44,0 script Diary#Fefe NPC_NO_SPRITE,{ + setpcblock(PCBLOCK_HARD, true); + mesc l("STORY MODE ENABLED. Monsters won't attack you, so you can read without worries."), 1; mesc l("Here lies a diary, presumably from Fefe."); next; - mes ""; + clear; mesn b(l("Tulimshar, Tonori - 2nd March 300 AT")); mesc l("Tomorrow is the day, when we shall march against Raid, in order to free our people from the oppression of her mages."); dnext; @@ -181,6 +185,7 @@ OnInit: mesc l("If I can't beat him, no one else can, and if our species are to survive, we'll need to return to the Edge. Even if it means... Fulfilling the prophecy. %s. Whatever the cost.", b("Per Asper Ad Salvos")); next; 00610_Init_BlackBox(); + setpcblock(PCBLOCK_HARD, false); closeclientdialog; close; |