summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWombat <hpwombat@yahoo.com>2011-07-07 07:44:43 -0400
committerAli-G <gauvain.dauchy@free.fr>2011-07-07 13:56:46 +0200
commit82c9491b077f6bf92e75569f4d5bebad333375dd (patch)
tree4cf48f1b7b8ee4c3e811129f62e82dc338f0bb0b
parentae0a4f8ea18d354e6a19dd094425addf85828399 (diff)
downloadserverdata-82c9491b077f6bf92e75569f4d5bebad333375dd.tar.gz
serverdata-82c9491b077f6bf92e75569f4d5bebad333375dd.tar.bz2
serverdata-82c9491b077f6bf92e75569f4d5bebad333375dd.tar.xz
serverdata-82c9491b077f6bf92e75569f4d5bebad333375dd.zip
tutorial-to-bazaar npcs
-rw-r--r--world/map/npc/001-1/_import.txt1
-rw-r--r--world/map/npc/001-1/npcs.txt23
-rw-r--r--world/map/npc/021-1/_import.txt1
-rw-r--r--world/map/npc/021-1/npcs.txt43
-rw-r--r--world/map/npc/022-1/_import.txt1
-rw-r--r--world/map/npc/022-1/npcs.txt54
-rw-r--r--world/map/npc/042-1/_import.txt1
-rw-r--r--world/map/npc/042-1/npcs.txt11
8 files changed, 135 insertions, 0 deletions
diff --git a/world/map/npc/001-1/_import.txt b/world/map/npc/001-1/_import.txt
index b6c625ff..dba873bb 100644
--- a/world/map/npc/001-1/_import.txt
+++ b/world/map/npc/001-1/_import.txt
@@ -20,6 +20,7 @@ npc: npc/001-1/mapflags.txt
npc: npc/001-1/merchant.txt
npc: npc/001-1/mikhail.txt
npc: npc/001-1/monster_guide.txt
+npc: npc/001-1/npcs.txt
npc: npc/001-1/rewards_master.txt
npc: npc/001-1/sandra.txt
npc: npc/001-1/sarah.txt
diff --git a/world/map/npc/001-1/npcs.txt b/world/map/npc/001-1/npcs.txt
new file mode 100644
index 00000000..35bfbe35
--- /dev/null
+++ b/world/map/npc/001-1/npcs.txt
@@ -0,0 +1,23 @@
+// Talk NPCs to help make trek interesting around the Bazaar.
+
+001-1.gat,46,26,0 script Yalina 209,{
+ set @npcname$, "Yalina";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"Ian knows a lot! I had so many questions he helped me with!\"";
+ next;
+ mes "\"He rewards those that know what they are doing. When Elanore stops healing you, check in with Ian.\"";
+ next;
+ mes "\"Oh, just one more thing, Gladys may gossip a lot, but when I'm confused, she tends to know something that might help me out.\"";
+ close;
+}
+
+001-1.gat,84,72,0 script Cyndala 210,{
+ set @npcname$, "Cyndala";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"I used to visit the beach, but then the green slimes went crazy. I heard they ate a bunch of pirates that robbed some of Tulimshar's gold ships.\"";
+ next;
+ mes "\"Good riddance!\"";
+ close;
+}
diff --git a/world/map/npc/021-1/_import.txt b/world/map/npc/021-1/_import.txt
index 0c068010..9d7059d0 100644
--- a/world/map/npc/021-1/_import.txt
+++ b/world/map/npc/021-1/_import.txt
@@ -9,6 +9,7 @@ npc: npc/021-1/gate_guards.txt
npc: npc/021-1/inac.txt
npc: npc/021-1/mapflags.txt
npc: npc/021-1/north_shops.txt
+npc: npc/021-1/npcs.txt
npc: npc/021-1/royal_guards.txt
npc: npc/021-1/weellos.txt
npc: npc/021-1/workers.txt
diff --git a/world/map/npc/021-1/npcs.txt b/world/map/npc/021-1/npcs.txt
new file mode 100644
index 00000000..154052ab
--- /dev/null
+++ b/world/map/npc/021-1/npcs.txt
@@ -0,0 +1,43 @@
+// Talk NPCs to help make trek interesting between Tutorial and Bazaar.
+
+021-1.gat,77,42,0 script Jeric 214,{
+ set @npcname$, "Jeric";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"My father is an adventurer.\"";
+ next;
+ mes "\"After he proved himself around town, the guards let him fight monsters in the Sandstorm mine.\"";
+ close;
+}
+
+021-1.gat,75,67,0 script Silvia 207,{
+ set @npcname$, "Silvia";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"If you follow the road west, then south, you will arrive at the Bazaar in Southern Tulimshar.\"";
+ next;
+ mes "\"If you go west, then north, you'll see the Wizard Academy my parents just sent me to.\"";
+ next;
+ mes "\"The Academy is good, but I wish I had more free time. It takes a lot of intelligence to get what the teachers are talking about.\"";
+ close;
+}
+
+021-1.gat,45,77,0 script Pauline 208,{
+ set @npcname$, "Pauline";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"I've mastered several schools of magic and fought the Yeti in Kaizei.\"";
+ next;
+ mes "\"The path of magic is a long and difficult one.\"";
+ close;
+}
+
+021-1.gat,49,123,0 script Michel 215,{
+ set @npcname$, "Michel";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"Elanore is a magician in Southern Tulimshar that helps young adventurers by healing their battle wounds. When they are experienced enough, she stops healing them.\"";
+ next;
+ mes "\"You can find her by going through the Bazaar and to the East.\"";
+ close;
+}
diff --git a/world/map/npc/022-1/_import.txt b/world/map/npc/022-1/_import.txt
index fe6db9f9..7fd59b12 100644
--- a/world/map/npc/022-1/_import.txt
+++ b/world/map/npc/022-1/_import.txt
@@ -6,4 +6,5 @@ npc: npc/022-1/_warps.txt
npc: npc/022-1/dock.txt
npc: npc/022-1/ferry_master.txt
npc: npc/022-1/mapflags.txt
+npc: npc/022-1/npcs.txt
npc: npc/022-1/tutorial.txt
diff --git a/world/map/npc/022-1/npcs.txt b/world/map/npc/022-1/npcs.txt
new file mode 100644
index 00000000..f517b1fa
--- /dev/null
+++ b/world/map/npc/022-1/npcs.txt
@@ -0,0 +1,54 @@
+// Talk NPCs to help make trek interesting between Tutorial and Bazaar.
+
+022-1.gat,35,36,0 script Marikel 211,{
+ set @npcname$, "Marikel";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"Working on the docks can be hard nowadays.\"";
+ next;
+ mes "\"At least it pays well.\"";
+ menu
+ "Why does it pay well?",L_Marikel_1,
+ "Pfft! Working on the docks is for the birds.\"",L_Marikel_2;
+ close;
+
+L_Marikel_1:
+ mes "[" + @npcname$ + "]";
+ mes "\"Tulimshar is the wealthiest and most powerful city in the world!\"";
+ close;
+
+L_Marikel_2:
+ mes "[" + @npcname$ + "]";
+ mes "\"Yeah, killing monsters may pay well, but I'd need more hazard pay than a tower mason to hunt monsters.\"";
+ next;
+ mes "\"I'll just play safe and stick to putting our stock away. Be careful, the monsters outside the city can be dangerous.\"";
+ next;
+ mes "\"The Sandstorm mine, just South of Tulimshar, is blocked from most but miners, soldiers and seasoned monster slayers.\"";
+ close;
+}
+
+022-1.gat,65,46,0 script Joelin 212,{
+ set @npcname$, "Joelin";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"My ship's to set sail soon. We'll tour around the Acean Isles, then back around to Argaes, then here in Tonori.\"";
+ next;
+ mes "\"Tulimshar's Fleets also are sending exploration teams to build a dock in Nivalis on Kaizei, which I'm not really hoping for. It's cold up there!\"";
+ close;
+}
+
+022-1.gat,67,46,0 script Harper 213,{
+ set @npcname$, "Harper";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"My captain knows an awlful lot about the world's continents.\"";
+ close;
+}
+
+022-1.gat,75,99,0 script Swezanne 206,{
+ set @npcname$, "Swezanne";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"Just through those gates is Northern Tulimshar. In Southern Tulimshar I go to the Bazaar and talk with Aidan about monster points.\"";
+ close;
+}
diff --git a/world/map/npc/042-1/_import.txt b/world/map/npc/042-1/_import.txt
index 98b8f3ab..844b13b9 100644
--- a/world/map/npc/042-1/_import.txt
+++ b/world/map/npc/042-1/_import.txt
@@ -6,4 +6,5 @@ npc: npc/042-1/_warps.txt
npc: npc/042-1/hasan.txt
npc: npc/042-1/kaan.txt
npc: npc/042-1/malik.txt
+npc: npc/042-1/npcs.txt
npc: npc/042-1/valon.txt
diff --git a/world/map/npc/042-1/npcs.txt b/world/map/npc/042-1/npcs.txt
new file mode 100644
index 00000000..c43749c9
--- /dev/null
+++ b/world/map/npc/042-1/npcs.txt
@@ -0,0 +1,11 @@
+// Talk NPCs to help make trek interesting between Tutorial and Bazaar.
+
+042-1.gat,62,73,0 script Liana 205,{
+ set @npcname$, "Liana";
+
+ mes "[" + @npcname$ + "]";
+ mes "\"Tulimshar is a large city. I'm sure glad I live in the suburbs because I know where everything's at.\"";
+ next;
+ mes "\"I think Tanisha is in the building to the right. That girl is growing up fast.\"";
+ close;
+}