diff options
Diffstat (limited to 'npc/027-1/eliza.txt')
-rw-r--r-- | npc/027-1/eliza.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/npc/027-1/eliza.txt b/npc/027-1/eliza.txt new file mode 100644 index 000000000..d7e203a7f --- /dev/null +++ b/npc/027-1/eliza.txt @@ -0,0 +1,22 @@ +// TMW2 Script +// Author: +// Jesusalva +// Description: +// Forgetful + +027-1,123,28,0 script Eliza NPC_DARK_SORCERER_F,{ + mesn l("%s, the Forgetful", .name$); + mesq l("What was I doing before...? I totally forgot!"); + if (any(true, false)) + mesc l("Have you seen my sister Elza?"); + next; + ForgetfulNPC(.name$, CLASS_DESTRUCTION); + close; + +OnInit: + .sex = G_FEMALE; + .distance = 5; + end; + +} + |