diff options
Diffstat (limited to 'npc/guild/nguild')
-rw-r--r-- | npc/guild/nguild/nguild_warper.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/guild/nguild/nguild_warper.txt b/npc/guild/nguild/nguild_warper.txt index 0c6c5b41a..e39f62d3d 100644 --- a/npc/guild/nguild/nguild_warper.txt +++ b/npc/guild/nguild/nguild_warper.txt @@ -3,7 +3,7 @@ //===== By: ==================================================
//= Lupus
//===== Current Version: =====================================
-//= 1.3
+//= 1.4
//===== Compatible With: =====================================
//= eAthena 1+; RO Episode 4+
//===== Description: =========================================
@@ -20,6 +20,7 @@ //= unallowed buffs [Lupus]
//= 1.3 Restricted TK,High classes >=90 BaseLevel,
//= updated list of unallowed buffs [Lupus]
+//= 1.4 Restricted it to 80 Base Level [Lupus]
//============================================================
@@ -28,13 +29,14 @@ 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 && BaseLevel<90) || Class==Job_SuperNovice || Class==Job_Super_Baby
+ || (Class==Job_Taekwon && BaseLevel<80) || Class==Job_SuperNovice || Class==Job_Super_Baby
|| (Class>=Job_Baby && Class<=Job_Baby_Thief)
- || (Class>=Job_Novice_High && Class<=Job_Thief_High && BaseLevel<90)
+ || (Class>=Job_Novice_High && Class<=Job_Thief_High && BaseLevel<80)
) menu "Warp me to Novice Castles",M_WARP,"Cancel",-;
mes "[Cita]";
mes "All the 2nd classes aren't allowed to enter the sacred Novice Castles place.";
+ mes "As well as Teakwons and High Classes from 80 Base Level.";
emotion 0;
close;
|