summaryrefslogtreecommitdiff
path: root/npc/001-2-29/edouard.txt
diff options
context:
space:
mode:
authoromatt <m.vuoso@laposte.net>2016-07-17 04:28:34 +0200
committeromatt <m.vuoso@laposte.net>2016-08-04 04:30:18 +0200
commitb79920677e694ab904ce729b3bf6fc9df42f2882 (patch)
tree83f5b3306fd3f62fe95a04c404316368736d04e9 /npc/001-2-29/edouard.txt
parent04d08c1b5f1bc4e9b4676b68d75530453aefce43 (diff)
downloadserverdata-b79920677e694ab904ce729b3bf6fc9df42f2882.tar.gz
serverdata-b79920677e694ab904ce729b3bf6fc9df42f2882.tar.bz2
serverdata-b79920677e694ab904ce729b3bf6fc9df42f2882.tar.xz
serverdata-b79920677e694ab904ce729b3bf6fc9df42f2882.zip
add BarberSayStyle function in barber.txt, and add new line on the top of menu of edouard,
add hairstyle and haircolor array in npc/config/hairstyle_config.txt.
Diffstat (limited to 'npc/001-2-29/edouard.txt')
-rw-r--r--npc/001-2-29/edouard.txt18
1 files changed, 11 insertions, 7 deletions
diff --git a/npc/001-2-29/edouard.txt b/npc/001-2-29/edouard.txt
index d3a73ca9..2cd948df 100644
--- a/npc/001-2-29/edouard.txt
+++ b/npc/001-2-29/edouard.txt
@@ -36,29 +36,33 @@
do
{
menuint
- l("I'd like to get a different style."), 1,
- l("Can you do something with my color?"), 2,
- l("What's your story again?"), 3,
- l("I'm fine for now, thank you."), 4;
+ l("What is my current hairstyle and hair color?"), 1,
+ l("I'd like to get a different style."), 2,
+ l("Can you do something with my color?"), 3,
+ l("What's your story again?"), 4,
+ l("I'm fine for now, thank you."), 5;
switch (@menuret)
{
case 1:
+ BarberSayStyle 3;
+ break;
+ case 2:
BarberChangeStyle;
speech 5,
l("Enjoy your new style.");
l("Anything else?");
break;
- case 2:
+ case 3:
BarberChangeColor;
speech 5,
l("I hope you like this color.");
l("Anything else?");
break;
- case 3:
+ case 4:
tellStory;
break;
- case 4:
+ case 5:
speech 5,
l("Feel free to come visit me another time.");