diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-09-22 10:56:42 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-09-22 10:56:42 -0600 |
commit | 90309d65eec85483792f68877970b85078e6018b (patch) | |
tree | cc0fcc19d795fc9561cc241723fae6a809081763 /npc/022-1_Tulimshar | |
parent | b5f7dfdee450a0cd90f15bfc1a6f7845b6060198 (diff) | |
download | serverdata-90309d65eec85483792f68877970b85078e6018b.tar.gz serverdata-90309d65eec85483792f68877970b85078e6018b.tar.bz2 serverdata-90309d65eec85483792f68877970b85078e6018b.tar.xz serverdata-90309d65eec85483792f68877970b85078e6018b.zip |
Add a basic ferry system
Diffstat (limited to 'npc/022-1_Tulimshar')
-rw-r--r-- | npc/022-1_Tulimshar/_import.txt | 3 | ||||
-rw-r--r-- | npc/022-1_Tulimshar/dock.txt | 6 | ||||
-rw-r--r-- | npc/022-1_Tulimshar/elanore.txt | 3 | ||||
-rw-r--r-- | npc/022-1_Tulimshar/ferry_master.txt | 16 |
4 files changed, 28 insertions, 0 deletions
diff --git a/npc/022-1_Tulimshar/_import.txt b/npc/022-1_Tulimshar/_import.txt index e3e6f0d8..f2c7098b 100644 --- a/npc/022-1_Tulimshar/_import.txt +++ b/npc/022-1_Tulimshar/_import.txt @@ -1,3 +1,6 @@ map: 022-1.gat npc: npc/022-1_Tulimshar/_mobs.txt npc: npc/022-1_Tulimshar/_warps.txt +npc: npc/022-1_Tulimshar/dock.txt +npc: npc/022-1_Tulimshar/elanore.txt +npc: npc/022-1_Tulimshar/ferry_master.txt diff --git a/npc/022-1_Tulimshar/dock.txt b/npc/022-1_Tulimshar/dock.txt new file mode 100644 index 00000000..72d28486 --- /dev/null +++ b/npc/022-1_Tulimshar/dock.txt @@ -0,0 +1,6 @@ +// The ferry dock + +022-1.gat,84,72,0 script #tulimshardock 127,6,1,{ + set @loc, DOCK_tulimshar; + callfunc "Ferry"; +} diff --git a/npc/022-1_Tulimshar/elanore.txt b/npc/022-1_Tulimshar/elanore.txt new file mode 100644 index 00000000..f94344a7 --- /dev/null +++ b/npc/022-1_Tulimshar/elanore.txt @@ -0,0 +1,3 @@ +// + +022-1.gat,68,79,0 duplicate(Elanore#_M) Elanore 108 diff --git a/npc/022-1_Tulimshar/ferry_master.txt b/npc/022-1_Tulimshar/ferry_master.txt new file mode 100644 index 00000000..3cc10ce3 --- /dev/null +++ b/npc/022-1_Tulimshar/ferry_master.txt @@ -0,0 +1,16 @@ +// + +022-1.gat,73,71,0 script Ferry Master 138,{ + mes "[Ferry Master]"; + mes "\"Hello! Do you need something?\""; + next; + menu + "How do I use the ferry?", L_Explain, + "Nothing I guess", -; + close; + +L_Explain: + mes "[Ferry Master]"; + mes "\"You'll setup on the dock and select your destination. Each destination has an associated price that you need to pay. You don't have to go anywhere. Choosing the current port will result in nothing.\""; + close; +} |