summaryrefslogtreecommitdiff
path: root/npc/003-1/ninathetraveler.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-1/ninathetraveler.txt')
-rw-r--r--npc/003-1/ninathetraveler.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/003-1/ninathetraveler.txt b/npc/003-1/ninathetraveler.txt
index 31180615d..921344691 100644
--- a/npc/003-1/ninathetraveler.txt
+++ b/npc/003-1/ninathetraveler.txt
@@ -1,7 +1,7 @@
// Author:
// Saulc
-003-1,56,143,0 script Nina The Traveler NPC_GUARD1,{
+003-1,56,143,0 script Nina The Traveler NPC_MONA,{
.cake = CherryCake;
.reward = FancyHat;
@@ -25,20 +25,20 @@
else
{
speech S_FIRST_BLANK_LINE,
- l("Sorry it's not the cake i love.");
+ l("Sorry, that is not the cake I love.");
close;
}
}
function quest_started {
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("Oh Welcoem then.");
+ l("Oh, Welcome then.");
speech S_LAST_NEXT,
- l("Can you bring me a piece of Cherry Cake? Pretty please?.");
+ l("Can you bring me a piece of Cherry Cake? Pretty please?");
do
{
select
- l("Here is it !"),
+ l("Here is it!"),
menuaction(l("Quit"));
switch (@menu)
@@ -56,8 +56,8 @@
if (.@chest == 1)
goto quest_completed;
select
- rif(.@chest == 0,
- l("Hello i'm new there, can i help you ?")),
+ rif(.@chest == 0,
+ l("Hello, I'm new here! Can I help you?")),
menuaction(l("Quit"));
switch (@menu)
@@ -73,7 +73,7 @@
close;
OnInit:
- .sex = G_MALE;
+ .sex = G_FEMALE;
.distance = 3;
end;
}