- Removed labels in nguild_warper.txt

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16929 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
brianluau 2012-11-18 07:25:56 +00:00
parent ad3527821b
commit 4aaa886ece

View File

@ -28,19 +28,12 @@
//= TODO: The official entrance is in Izlude. //= TODO: The official entrance is in Izlude.
//============================================================ //============================================================
prontera,146,163,6 script Novice Castles 729,{ prontera,146,163,6 script Novice Castles 729,{
mes "[Cita]"; mes "[Cita]";
if(getcharid(2)!=0){ if (!getcharid(2)) {
if(getgdskilllv(getcharid(2),10013)){ mes "^FF0000You have to enter a guild to be able to hit Emperium!^000000";
mes "I see... your guild has Emergency Call mastered."; } else if (getgdskilllv(getcharid(2),10013) ||
mes "You cannot enter the Novice Castle area."; (getgdskilllv(getcharid(2),10000) +
emotion e_hmm;
emotion e_wah,1;
close;
}
if(
getgdskilllv(getcharid(2),10000) +
getgdskilllv(getcharid(2),10001) + getgdskilllv(getcharid(2),10001) +
getgdskilllv(getcharid(2),10002) + getgdskilllv(getcharid(2),10002) +
getgdskilllv(getcharid(2),10003) + getgdskilllv(getcharid(2),10003) +
@ -54,29 +47,21 @@ prontera,146,163,6 script Novice Castles 729,{
getgdskilllv(getcharid(2),10011) + getgdskilllv(getcharid(2),10011) +
getgdskilllv(getcharid(2),10012) + getgdskilllv(getcharid(2),10012) +
getgdskilllv(getcharid(2),10013) + getgdskilllv(getcharid(2),10013) +
getgdskilllv(getcharid(2),10014) > 9 getgdskilllv(getcharid(2),10014) > 9)
){ ) {
mes "I see... your guild has Emergency Call mastered."; mes "I see... your guild has Emergency Call mastered.";
mes "You cannot enter the Novice Castle area."; mes "You cannot enter the Novice Castle area.";
emotion e_hmm; emotion e_hmm;
emotion e_wah,1; emotion e_wah,1;
close;
}
} else { } else {
mes "^FF0000You have to enter a guild to be able to hit Emperium!^000000";
}
mes "I'm a new usher of Novice Castles."; mes "I'm a new usher of Novice Castles.";
next; next;
if( !(eaclass()&(EAJL_2|EAJL_UPPER)) && BaseLevel<60 )
menu "Warp me to Novice Castles",M_WARP,"Cancel",-;
mes "[Cita]"; mes "[Cita]";
if ((eaclass()&(EAJL_2|EAJL_UPPER)) || BaseLevel>=60) {
mes "I'm sorry, you can't enter the sacred Novice Castles place."; mes "I'm sorry, you can't enter the sacred Novice Castles place.";
emotion e_sry; emotion e_sry;
close; } else if (select("Warp me to Novice Castles","Cancel") == 1) {
// remove several unallowed buffs
M_WARP:
//remove several unallowed buffs
sc_end SC_ASSUMPTIO; sc_end SC_ASSUMPTIO;
sc_end SC_IMPOSITIO; sc_end SC_IMPOSITIO;
sc_end SC_SUFFRAGIUM; sc_end SC_SUFFRAGIUM;
@ -92,20 +77,20 @@ M_WARP:
sc_end SC_MAXOVERTHRUST; sc_end SC_MAXOVERTHRUST;
sc_end SC_SPIRIT; sc_end SC_SPIRIT;
warp "n_castle",102,93+rand(14); warp "n_castle",102,93+rand(14);
}
}
close; close;
} }
n_castle,102,107,5 script Cita 729,{ n_castle,102,107,5 script Cita 729,{
mes "[Cita]"; mes "[Cita]";
mes "Hello, "+ strcharinfo(0) +". Can I help you?"; mes "Hello, "+ strcharinfo(0) +". Can I help you?";
next; next;
menu "Warp me to Prontera!",-,"Cancel",LEnd; if (select("Warp me to Prontera!","Cancel") == 1) {
warp "prontera",155,177+rand(5); warp "prontera",155,177+rand(5);
close; } else {
LEnd:
mes "[Cita]"; mes "[Cita]";
mes "Ok."; mes "Ok.";
}
close; close;
} }