diff options
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/edouard.txt | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index 94c9e1d4..41894a22 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -7,6 +7,7 @@ npc: npc/001-1/beuss.txt npc: npc/001-1/chelios.txt npc: npc/001-1/cookiemaster.txt npc: npc/001-1/doors.txt +npc: npc/001-1/edouard.txt npc: npc/001-1/elmo.txt npc: npc/001-1/enora.txt npc: npc/001-1/eugene.txt diff --git a/npc/001-1/edouard.txt b/npc/001-1/edouard.txt new file mode 100644 index 00000000..2d364c25 --- /dev/null +++ b/npc/001-1/edouard.txt @@ -0,0 +1,26 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Barber of Aemil, should be placed on the 29th indoor but it's still a WIP + +001-1,133,87,0 script Edouard#001-2-29 430,{ + mesn; + mesq lg("Hello dear, what do you want today?"); + next; + + callfunc "Barber"; + + mesn; + mesq l("Bye bye!"); + + goto L_Close; + +L_Close: + close; + +OnInit: + setnpcsex G_MALE; + setnpcdistance 2; + end; +} |