diff options
author | (no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-04 23:25:09 +0000 |
---|---|---|
committer | (no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-04 23:25:09 +0000 |
commit | 195dffc20af1fb32c7e4119988911b72955aeabc (patch) | |
tree | b60d2a5e72d64dc5fc21eb9ce0962631e774a4c9 /npc/other/Valkyrie.txt | |
download | hercules-195dffc20af1fb32c7e4119988911b72955aeabc.tar.gz hercules-195dffc20af1fb32c7e4119988911b72955aeabc.tar.bz2 hercules-195dffc20af1fb32c7e4119988911b72955aeabc.tar.xz hercules-195dffc20af1fb32c7e4119988911b72955aeabc.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@2 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/Valkyrie.txt')
-rw-r--r-- | npc/other/Valkyrie.txt | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/npc/other/Valkyrie.txt b/npc/other/Valkyrie.txt new file mode 100644 index 000000000..82a52a5db --- /dev/null +++ b/npc/other/Valkyrie.txt @@ -0,0 +1,50 @@ +//1.1 label fixed [Lupus]
+
+yuno_in02.gat,93,207,0 script Heaven's Door 111,{
+ if (Class < 7) goto L_Can;
+ mes "[The writing on the paper]";
+ mes "You have found the entrance to the temple.";
+ mes "This path is only open to those who are born again.";
+ mes "Only heroes can open new paths.";
+ next;
+ mes "[The writing on the paper]";
+ mes "The area for heroes has been completed,";
+ mes "You cannot be immortal, but in this land...";
+ mes "Heroes are able to.";
+ next;
+ mes "[The writing on the paper]";
+ mes "The area for heroes has been completed,";
+ mes "You cannot be immortal, but in this land...";
+ mes "Heroes are able to.";
+ next;
+ menu "Continue reading",-,"Stop reading",L_Can;
+ mes "[The writing on the paper]";
+ mes "Heaven and the closest palce,";
+ mes "In the Valkyrie's temple you shall find the path";
+ mes "A normal mortal cannot live for ever.";
+ next;
+ warp "valkyrie",48,8;
+ close;
+L_Can:
+ mes "[The writing on the paper]";
+ mes "....................";
+ close;
+
+}
+
+valkyrie.gat,48,86,6 script Valkyrie 811,{
+ if (class > 7) goto L_Rest;
+ mes "[Valkyrie]";
+ mes "Welcome to Valhalla.";
+ mes "But, you have not been invited yet.";
+ mes "Leave here without leaving a trace.";
+ mes "Glory to the Swordsmans!";
+ warp "yuno_in02",93,205;
+ close;
+L_Rest:
+ mes "[Valkyrie]";
+ mes "Welcome to Valhalla.";
+ mes "Take plenty of rest while you are here.";
+ mes "Honor and glory to the Swordsmans";
+ close;
+}
\ No newline at end of file |