diff options
author | Alige <gauvain.dauchy@free.fr> | 2016-07-06 14:42:27 +0200 |
---|---|---|
committer | Alige <gauvain.dauchy@free.fr> | 2016-07-06 14:42:44 +0200 |
commit | 3f6a75979f91e6640a938b8e1cef15a64c287372 (patch) | |
tree | c43348a6592bdf46a13edd5ff0d66e7cff496638 | |
parent | 4e30f4908ed1cab2e68464d384cd3c7c2257776f (diff) | |
download | serverdata-3f6a75979f91e6640a938b8e1cef15a64c287372.tar.gz serverdata-3f6a75979f91e6640a938b8e1cef15a64c287372.tar.bz2 serverdata-3f6a75979f91e6640a938b8e1cef15a64c287372.tar.xz serverdata-3f6a75979f91e6640a938b8e1cef15a64c287372.zip |
Added new possibility on rumly's script & fixed some english.
-rw-r--r-- | npc/001-1/rumly.txt | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/npc/001-1/rumly.txt b/npc/001-1/rumly.txt index 1db88f69..4f2e7a4c 100644 --- a/npc/001-1/rumly.txt +++ b/npc/001-1/rumly.txt @@ -131,17 +131,18 @@ L_ResetStats: L_ConfirmReset: switch (select(lg("Yes, I am sure."), - lg("I need to think about it a bit more..."), - lg("I won't need it thank you."))) + lg("I need to think about it..."), + lg("I won't need it, thank you."))) { case 1: speech 5, - l("Then give me one @@ and we will start!", getitemlink(Plushroom)); + l("Then give me some @@ so we can get started!", getitemlink(Plushroom)); menuint rif(countitem(Plushroom) >= .@plush_count, lg("Here, take as many as you need, I have plenty!")), 0, - rif(countitem(Plushroom) < .@plush_count, lg("I don't have any plushroom on me.")), 1, - lg("I have to go sorry."), 2; + rif(countitem(Plushroom) >= 0 && countitem(Plushroom) < .@plush_count, lg("I think I have enough plushrooms, take a look and tell me.")), 1, + rif(countitem(Plushroom) == 0, lg("Oh no, I don't have any plushroom on me right now.")), 2, + lg("I have to go, sorry."), 3; switch (@menuret) { @@ -170,12 +171,15 @@ L_ConfirmReset: speech 4, l("Let's see... @@ of your status points have just been reset!", StatusPoint - .@wasSP), l("Spend it wisely this time."), - lg("But you are welcome to reset your stats again if you bring me more plushrooms!"); + lg("But you are welcome to reset your stats again if you bring me some more plushrooms!"); } goto L_Quit; break; case 1: + goto L_NeedMore; + break; case 2: + case 3: goto L_Later; break; } @@ -193,7 +197,18 @@ L_Later: setq General_Rumly, 2; } speech 5, - l("Come back soon! And bring a plushroom with you!"); + l("Come back soon, and bring @@!", getitemlink(Plushroom)); + + goto L_Quit; + +L_NeedMore: + if (.@visited < 2) + { + setq General_Rumly, 2; + } + + speech 5, + lg("You do have some but I'm afraid I need more to show you their true power!"); goto L_Quit; |