diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-08 11:21:43 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-08 11:21:43 -0200 |
commit | fc4d078fe6c3b5233b158254b6d75254c9ef6f71 (patch) | |
tree | 3ff2add93cb4cbd3e1ee2b18f271bb58482aa082 /npc/003-1/sarah.txt | |
parent | d4c958fa3f3774108d9ac48daee6856b6b67b997 (diff) | |
download | serverdata-fc4d078fe6c3b5233b158254b6d75254c9ef6f71.tar.gz serverdata-fc4d078fe6c3b5233b158254b6d75254c9ef6f71.tar.bz2 serverdata-fc4d078fe6c3b5233b158254b6d75254c9ef6f71.tar.xz serverdata-fc4d078fe6c3b5233b158254b6d75254c9ef6f71.zip |
Minor maitenance at Tulishmar - fix some distances, typos, sprites, etc.
This does not introduces any new content, nor fixes everything which needs fixing.
It is very partial and only happens at specific places outdoors.
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; } |