diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-12 21:46:28 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-12 21:46:28 -0200 |
commit | 1508bda0f83cae103b65f02c4a6417e0e384596f (patch) | |
tree | 0a5796808b6459768370d883102e2fb7ba2b9b2d /npc/005-1/sailors.txt | |
parent | 5583a85812287e266991b88686d27a9a6798ea8d (diff) | |
download | serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.gz serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.bz2 serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.xz serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.zip |
Sailors
Diffstat (limited to 'npc/005-1/sailors.txt')
-rw-r--r-- | npc/005-1/sailors.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/005-1/sailors.txt b/npc/005-1/sailors.txt new file mode 100644 index 000000000..02df16ae3 --- /dev/null +++ b/npc/005-1/sailors.txt @@ -0,0 +1,24 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// TODO + +005-1,95,99,0 script Sailors NPC_ELVEN_MAN_TRADER_SITTING,0,0,{ + .@q = getq(CandorQuest_Sailors); + if (.@q == 1) mesn; + //goto L_Find; + + mesn; + mesq l("Ahoy matey!"); + next; + mesq l("Arr, it is always good to be on land after so much time in sea!"); + next; + mesq l("I still can't believe we ran out of beer, though!"); + close; + +OnInit: + .sex = G_OTHER; + .distance = 8; + end; +} |