summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-11-17 21:13:16 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-11-17 21:13:16 +0000
commit14274e19ce820fac002c7e99d46d33f82ce96fae (patch)
tree1b7fb64cb50296d886cc3d0eb84f7fbb3e030fdc
parentad41d79b123ce138ea935e1b251d50b0c6292fcf (diff)
downloadhercules-14274e19ce820fac002c7e99d46d33f82ce96fae.tar.gz
hercules-14274e19ce820fac002c7e99d46d33f82ce96fae.tar.bz2
hercules-14274e19ce820fac002c7e99d46d33f82ce96fae.tar.xz
hercules-14274e19ce820fac002c7e99d46d33f82ce96fae.zip
added a custom warper to Novice Castles
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@235 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--conf-tmpl/map_athena.conf3
-rw-r--r--npc/Changelog.txt1
-rw-r--r--npc/guild/Extras/woe_warper.txt48
3 files changed, 52 insertions, 0 deletions
diff --git a/conf-tmpl/map_athena.conf b/conf-tmpl/map_athena.conf
index 9d14ca95a..386e88f4c 100644
--- a/conf-tmpl/map_athena.conf
+++ b/conf-tmpl/map_athena.conf
@@ -379,6 +379,9 @@ npc: npc/guild/nguild/nguild_kafras.txt
npc: npc/guild/nguild/nguild_treas.txt
npc: npc/guild/nguild/nguild_guardians.txt
+//Guild Wars: Extras
+//npc: npc/guild/Extras/woe_gflag.txt
+npc: npc/guild/Extras/woe_warper.txt
//------------------ Guild Wars(Non-optimized) -----------------------
//Guild Wars: General
diff --git a/npc/Changelog.txt b/npc/Changelog.txt
index fb46e3649..89dc210dc 100644
--- a/npc/Changelog.txt
+++ b/npc/Changelog.txt
@@ -35,6 +35,7 @@ Other Ppl
Date Added
======
11/18
+ * Added custom WOE warper (now you can get to Novice Castles from Prontera) [Lupus]
* Prontera.txt (Sewers) anti-novice exploit fix. should be added to any quests/banks where u once get free items/zeny [Lupus]
11/17
* Fixed valkyrie.txt (wrong condition check, temp var->perm vars) but it still has no exit for common players [Lupus]
diff --git a/npc/guild/Extras/woe_warper.txt b/npc/guild/Extras/woe_warper.txt
new file mode 100644
index 000000000..91e6be6d1
--- /dev/null
+++ b/npc/guild/Extras/woe_warper.txt
@@ -0,0 +1,48 @@
+//Custom WOE warper 1.1 [Lupus]
+//you can get to Novice Castles, too
+
+n_castle.gat,102,107,5 script Vimta 757,{
+ mes "[Vimta]";
+ mes "Hello, "+ strcharinfo(0) +"! What would you like?";
+ next;
+ menu "Warp me to Prontera",-,"Cancel",LEnd;
+
+ warp "prontera.gat",155,177+rand(5);
+ close;
+ LEnd:
+ mes "[Vimta]";
+ mes "Ok. I'll wait here.";
+ close;
+}
+
+prontera.gat,130,217,5 script Vimta 757,{
+ mes "[Vimta]";
+ mes "Hello there! I'm a WOE representative, Vimta.";
+ if (getcharid(2) < 1000 ) mes "You are not a guild member, "+ strcharinfo(0) +"? Naff off for now.";
+ if (getcharid(2) < 1000 ) close;
+ if (agitcheck(0) == 0) mes "When WOE is off I can warp you to Novice Castles only:";
+ if (agitcheck(0) != 0) mes "I can warp you to any Castle:";
+ next;
+ if (agitcheck(0) == 0) menu "Novice Castles",novice_cas,"Cancel",-;
+ if (agitcheck(0) != 0) menu "Prontera Castles",prtg_cas,"Payon Castles",payg_cas,"Geffen Castles",gefg_cas,"Aldebaran Castles",aldeg_cas,"Novice Castles",novice_cas,"Cancel",-;
+
+ mes "[Vimta]";
+ mes "Don't think too long, War of Emperium is such a cool thing.";
+ close;
+
+ prtg_cas:
+ warp "prt_gld.gat", 159, 38; close;
+
+
+ payg_cas:
+ warp "pay_gld.gat", 202, 173; close;
+
+ gefg_cas:
+ warp "gef_fild13.gat", 270, 225; close;
+
+ aldeg_cas:
+ warp "alde_gld.gat", 186, 157; close;
+
+ novice_cas:
+ warp "n_castle.gat", 102, 103+rand(5); close;
+}