diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-01-13 20:50:42 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-01-13 20:50:42 +0100 |
commit | 20df2abc1aca00d6aa5dc78347133890f36b32f3 (patch) | |
tree | 4ad4a8bb8b0605473a702e314799a4626347721a /npc/000-1/fexil.txt | |
download | serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.gz serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.bz2 serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.xz serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.zip |
Initial commit
Diffstat (limited to 'npc/000-1/fexil.txt')
-rw-r--r-- | npc/000-1/fexil.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/npc/000-1/fexil.txt b/npc/000-1/fexil.txt new file mode 100644 index 000000000..de72aec24 --- /dev/null +++ b/npc/000-1/fexil.txt @@ -0,0 +1,44 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Newbie merchant. + +000-1,83,98,0 script Fexil NPC_ELVEN_MAN_TRADER,{ + mesn; + mesq lg("Greetings traveler."); + next; + mesq l("I have some clothes and other things for you at a fine price!"); + next; + mesq l("What I sell comes from every corner of Gasaron. From Esperia to the Land of Fire!"); + next; + mesq lg("Interested?"); + next; + + switch (select("Yes, why not.:I would rather sell some stuff.:No, Sorry.")) + { + case 1: + mes ""; + mesn; + mesq l("Good, take a look in the bag next to me then!"); + close; + + case 2: + closedialog; + shop "Bag#000-1"; + close; + + default: + mes ""; + mesn; + mesq l("Oh... Well, I just started to trade... Thus my technique may not be the best."); + next; + mesq lg("Anyway, if you ever feel interested, just check my bag!"); + close; + } + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} |