Guilds with Emergency Call skill mastered or with 9+ skill points can't take part in Novice Castles WoE.
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9877 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
987eb74e86
commit
fe4527d3a7
@ -26,6 +26,9 @@ KarLaeda
|
||||
|
||||
Date Added
|
||||
======
|
||||
2007/02/19
|
||||
* Guilds with Emergency Call skill mastered or with 9+ skill points [Lupus]
|
||||
can't take part in Novice Castles WoE.
|
||||
2007/02/16
|
||||
* Updated the Dancer job quest to attach a player to the main timer script.
|
||||
* Updated WoE scripts since the "guardian" script command no longer has a
|
||||
|
@ -3,7 +3,7 @@
|
||||
//===== By: ==================================================
|
||||
//= Lupus
|
||||
//===== Current Version: =====================================
|
||||
//= 1.6
|
||||
//= 1.7
|
||||
//===== Compatible With: =====================================
|
||||
//= eAthena 1+ with eaclass(); RO Episode 4+
|
||||
//===== Description: =========================================
|
||||
@ -23,13 +23,49 @@
|
||||
//= 1.4 Restricted it to 80 Base Level [Lupus]
|
||||
//= 1.5 According to official info: 1 Treasure Chest per Castle
|
||||
//= 1.6 Only 1st Class < 60 BaseLevel Players can participate
|
||||
//= 1.7 Guilds with Emergency Call or with 9+ skill points
|
||||
//= can't take part in NWoE. [Lupus]
|
||||
//= TODO: The official entrance is in Izlude.
|
||||
//============================================================
|
||||
|
||||
|
||||
prontera.gat,146,163,6 script Novice Castles 729,{
|
||||
mes "[Cita]";
|
||||
mes "Hey! I'm a new usher of Novice Castles.";
|
||||
if(getcharid(2)!=0){
|
||||
if(getgdskilllv(getcharid(2),10013)){
|
||||
mes "I see... your guild has Emergency Call mastered.";
|
||||
mes "You can't enter the Novice Caste area.";
|
||||
emotion e_hmm;
|
||||
emotion e_wah,1;
|
||||
close;
|
||||
}
|
||||
if(
|
||||
getgdskilllv(getcharid(2),10000) +
|
||||
getgdskilllv(getcharid(2),10001) +
|
||||
getgdskilllv(getcharid(2),10002) +
|
||||
getgdskilllv(getcharid(2),10003) +
|
||||
getgdskilllv(getcharid(2),10004) +
|
||||
getgdskilllv(getcharid(2),10005) +
|
||||
getgdskilllv(getcharid(2),10006) +
|
||||
getgdskilllv(getcharid(2),10007) +
|
||||
getgdskilllv(getcharid(2),10008) +
|
||||
getgdskilllv(getcharid(2),10009) +
|
||||
getgdskilllv(getcharid(2),10010) +
|
||||
getgdskilllv(getcharid(2),10011) +
|
||||
getgdskilllv(getcharid(2),10012) +
|
||||
getgdskilllv(getcharid(2),10013) +
|
||||
getgdskilllv(getcharid(2),10014) > 9
|
||||
){
|
||||
mes "I see... your guild has Emergency Call mastered.";
|
||||
mes "You can't enter the Novice Caste area.";
|
||||
emotion e_hmm;
|
||||
emotion e_wah,1;
|
||||
close;
|
||||
}
|
||||
} else {
|
||||
mes "^FF0000You have to enter a guild to be able to hit Emperium!^000000";
|
||||
}
|
||||
mes "I'm a new usher of Novice Castles.";
|
||||
next;
|
||||
if( !(eaclass()&(EAJL_2|EAJL_UPPER)) && BaseLevel<60 )
|
||||
menu "Warp me to Novice Castles",M_WARP,"Cancel",-;
|
||||
|
Loading…
x
Reference in New Issue
Block a user