diff options
Diffstat (limited to 'npc/003-1/sarah.txt')
-rw-r--r-- | npc/003-1/sarah.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/003-1/sarah.txt b/npc/003-1/sarah.txt index 6cfeeb60a..c5c6e7def 100644 --- a/npc/003-1/sarah.txt +++ b/npc/003-1/sarah.txt @@ -1,7 +1,7 @@ // Author: // Saulc -003-1,90,144,0 script Sarah NPC_PLAYER,{ +003-1,90,144,0 script Sarah 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; } |