summaryrefslogtreecommitdiff
path: root/npc/guild/nguild/nguild_warper.txt
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-03 16:14:37 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-03 16:14:37 +0000
commit5e4f830c297c26c9bccb1bac30c04f086b5e2ab2 (patch)
tree2ee50f0b8651737cca4ddf8bab2f45a17ea9eb23 /npc/guild/nguild/nguild_warper.txt
parent1f7a0e3bf5c4ada8bfcd756c83c451be51f80e08 (diff)
downloadhercules-5e4f830c297c26c9bccb1bac30c04f086b5e2ab2.tar.gz
hercules-5e4f830c297c26c9bccb1bac30c04f086b5e2ab2.tar.bz2
hercules-5e4f830c297c26c9bccb1bac30c04f086b5e2ab2.tar.xz
hercules-5e4f830c297c26c9bccb1bac30c04f086b5e2ab2.zip
fixed disappearing treasure chests, updated NWoE
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5886 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild/nguild/nguild_warper.txt')
-rw-r--r--npc/guild/nguild/nguild_warper.txt18
1 files changed, 15 insertions, 3 deletions
diff --git a/npc/guild/nguild/nguild_warper.txt b/npc/guild/nguild/nguild_warper.txt
index baa78bc2f..0c6c5b41a 100644
--- a/npc/guild/nguild/nguild_warper.txt
+++ b/npc/guild/nguild/nguild_warper.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= Lupus
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena 1+; RO Episode 4+
//===== Description: =========================================
@@ -18,6 +18,8 @@
//= 1.1 Now 2nd classes can't enter NC place at all
//= 1.2 Restricted access of SG/SL. On warp clear some
//= unallowed buffs [Lupus]
+//= 1.3 Restricted TK,High classes >=90 BaseLevel,
+//= updated list of unallowed buffs [Lupus]
//============================================================
@@ -26,9 +28,9 @@ prontera.gat,146,163,6 script Novice Castles 729,{
mes "Hey! I'm a new usher of Novice Castles.";
next;
if( (Class>=Job_Novice && Class<=Job_Thief)
- || Class==Job_Taekwon || Class==Job_SuperNovice || Class==Job_Super_Baby
+ || (Class==Job_Taekwon && BaseLevel<90) || Class==Job_SuperNovice || Class==Job_Super_Baby
|| (Class>=Job_Baby && Class<=Job_Baby_Thief)
- || (Class>=Job_Novice_High && Class<=Job_Thief_High)
+ || (Class>=Job_Novice_High && Class<=Job_Thief_High && BaseLevel<90)
) menu "Warp me to Novice Castles",M_WARP,"Cancel",-;
mes "[Cita]";
@@ -42,6 +44,16 @@ M_WARP:
sc_end SC_IMPOSITIO;
sc_end SC_SUFFRAGIUM;
sc_end SC_MAGNIFICAT;
+ sc_end SC_WEAPONPERFECTION;
+ sc_end SC_GOSPEL;
+ sc_end SC_BASILICA;
+ sc_end SC_MAGICPOWER;
+ sc_end SC_MARIONETTE;
+ sc_end SC_MARIONETTE2;
+ sc_end SC_DEVOTION;
+ sc_end SC_SACRIFICE;
+ sc_end SC_MAXOVERTHRUST;
+ sc_end SC_SPIRIT;
warp "n_castle.gat",102,93+rand(14);
close;
}