diff options
author | Reid <reidyaro@gmail.com> | 2015-07-25 06:54:36 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-07-25 06:54:36 +0200 |
commit | 8e9e37f59c0c6f029d6a0d6892e09a7e8a4ab9c7 (patch) | |
tree | bf07b6c057da6978df430cdb584f5de8d2687873 | |
parent | 4b78d90b80c629f561f45c6fbd3120c87f4b479d (diff) | |
download | serverdata-8e9e37f59c0c6f029d6a0d6892e09a7e8a4ab9c7.tar.gz serverdata-8e9e37f59c0c6f029d6a0d6892e09a7e8a4ab9c7.tar.bz2 serverdata-8e9e37f59c0c6f029d6a0d6892e09a7e8a4ab9c7.tar.xz serverdata-8e9e37f59c0c6f029d6a0d6892e09a7e8a4ab9c7.zip |
Add edouard the barber npc on 001-1 awaiting to get the INN map ready.
-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; +} |