summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWombat <hpwombat@yahoo.com>2010-08-30 00:47:41 -0400
committerWombat <hpwombat@yahoo.com>2010-08-30 01:02:01 -0400
commit63f66361cb1e78958b9055243ebabbd7cb93ba45 (patch)
treef9035ec473b4c2931c96aa530c4754880076507e
parent6ff18389b17ee6e366272ab1303546a9065e5a70 (diff)
downloadserverdata-63f66361cb1e78958b9055243ebabbd7cb93ba45.tar.gz
serverdata-63f66361cb1e78958b9055243ebabbd7cb93ba45.tar.bz2
serverdata-63f66361cb1e78958b9055243ebabbd7cb93ba45.tar.xz
serverdata-63f66361cb1e78958b9055243ebabbd7cb93ba45.zip
Removed diryn from 009-1 and minor fix to sarah.txt
diryn has moved to 008-1, south of Hurnscald and has been removed from 009-1 diryn need to be removed again from import.txt and a fix to sarah.txt
-rw-r--r--npc/001-1_Tulimshar/sarah.txt7
-rw-r--r--npc/009-1_Hurnscald/_import.txt1
-rw-r--r--npc/009-1_Hurnscald/diryn.txt66
3 files changed, 3 insertions, 71 deletions
diff --git a/npc/001-1_Tulimshar/sarah.txt b/npc/001-1_Tulimshar/sarah.txt
index cc4126a8..86ed8db6 100644
--- a/npc/001-1_Tulimshar/sarah.txt
+++ b/npc/001-1_Tulimshar/sarah.txt
@@ -13,11 +13,10 @@
L_Convince_Sarah_First:
mes "[Sarah]";
mes "\"Boy, am I hungry or what!\"";
- mes "";
- mes "The girl suddenly looks at you suspiciously."
next;
- mes "[Sarah]";
- mes "\"My mommy says not to talk to strangers!\";
+ mes "\"The girl suddenly looks at you suspiciously.\"";
+ next;
+ mes "\"My mommy says not to talk to strangers!\"";
L_Start:
diff --git a/npc/009-1_Hurnscald/_import.txt b/npc/009-1_Hurnscald/_import.txt
index 07c60602..ff08fce7 100644
--- a/npc/009-1_Hurnscald/_import.txt
+++ b/npc/009-1_Hurnscald/_import.txt
@@ -1,7 +1,6 @@
map: 009-1.gat
npc: npc/009-1_Hurnscald/_mobs.txt
npc: npc/009-1_Hurnscald/_warps.txt
-npc: npc/009-1_Hurnscald/diryn.txt
npc: npc/009-1_Hurnscald/jack.txt
npc: npc/009-1_Hurnscald/mapflags.txt
npc: npc/009-1_Hurnscald/milly.txt
diff --git a/npc/009-1_Hurnscald/diryn.txt b/npc/009-1_Hurnscald/diryn.txt
deleted file mode 100644
index 70d646d4..00000000
--- a/npc/009-1_Hurnscald/diryn.txt
+++ /dev/null
@@ -1,66 +0,0 @@
-//This is a teleportation (warp) NPC. Its purpose is to offer expensive, fast trips throughout the world.
-
-009-1.gat,51,38,0 script Diryn the Traveler 103,{
- mes "[Diryn]";
- mes "\"Greetings. I am Diryn the Traveler, Assistant Councilor of Tulimshar and teleportation extraordinaire. Tulimshar is expanding our influence throughout the world, so I was sent here to aid all who are willing and able to take on the threats to our interests.\"";
- next;
- mes "\"The monsters of the world have grown out of control, harming people, trade and travel. Needless to say, Tulimshar is not happy with this problem. Our solution: Rally those powerful enough to combat the monster threat and send them to hot spots to challenge the monster threat head on. However, teleportation to these areas is not only extremely dangerous, but also highly expensive. Do you think you got what it takes?\"";
- menu
- "I sure do!", L_Diryn_Yes,
- "No thank you", L_Diryn_No;
- close;
-
-L_Diryn_Yes:
- mes "[Diryn]";
- mes "\"Excellent. I can send you to many places, but again, the fees are large. Where shall I send you?\"";
- menu
- "Druid Tree (5000 GP)", L_Diryn_Druid_Tree,
- "Graveyard (10000 GP)", L_Diryn_Graveyard,
- "Magic House (5000 GP)", L_Diryn_Magic_House,
- "Tulimshar Town Square (2000 GP)", L_Diryn_Tulimshar,
- "Not Interested", L_Diryn_No;
- close;
-
-L_Diryn_Druid_Tree:
- if (zeny < 10000) goto L_NoMoney;
- mes "[Diryn]";
- mes "\"Be fearless!\"";
- set zeny, zeny-10000;
- warp "005-1.gat",73,36;
- close;
-
-L_Diryn_Graveyard:
- if (zeny < 15000) goto L_NoMoney;
- mes "[Diryn]";
- mes "\"Be fearless!\"";
- set zeny, zeny-15000;
- warp "027-1.gat",70,85;
- close;
-
-L_Diryn_Magic_House:
- if (zeny < 10000) goto L_NoMoney;
- mes "[Diryn]";
- mes "\"Be fearless!\"";
- set zeny, zeny-10000;
- warp "013-1.gat",45,92;
- close;
-
-L_Diryn_Tulimshar:
- if (zeny < 5000) goto L_NoMoney;
- mes "[Diryn]";
- mes "\"Be fearless!\"";
- set zeny, zeny-5000;
- warp "001-1.gat",44,70;
- close;
-
-L_Diryn_No:
- mes "[Diryn]";
- mes "\"Perhaps some day you will have the courage to help us. Enjoy your stay here in Hurnscald.\"";
- close;
-
-L_NoMoney:
- mes "[Diryn]";
- mes "\"Sorry, you don't have enough. Maybe next time.\"";
- close;
-
-}