summaryrefslogtreecommitdiff
path: root/npc/guild
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-07-31 14:24:26 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-07-31 14:24:26 +0000
commita472684e830dbe409ca1ed631895b1ec6501589f (patch)
tree9e95213e14819b59605b72cc6466e53685973e7f /npc/guild
parentf184a1ffa46cfeabf711a5ca6db3da6944cf79ab (diff)
downloadhercules-a472684e830dbe409ca1ed631895b1ec6501589f.tar.gz
hercules-a472684e830dbe409ca1ed631895b1ec6501589f.tar.bz2
hercules-a472684e830dbe409ca1ed631895b1ec6501589f.tar.xz
hercules-a472684e830dbe409ca1ed631895b1ec6501589f.zip
* 13026 Added iRO Repeatable EXP quests care of Kisuka.
* Updated guild scripts, removed interior flag dialog. * Applied some Payon 1 script fixes from bugreport:1941. * Cost is now doubled when investing a second time in eco or defence. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13026 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild')
-rw-r--r--npc/guild/agit_template.txt14
-rw-r--r--npc/guild/aldeg_cas01.txt32
-rw-r--r--npc/guild/aldeg_cas02.txt33
-rw-r--r--npc/guild/aldeg_cas03.txt33
-rw-r--r--npc/guild/aldeg_cas04.txt33
-rw-r--r--npc/guild/aldeg_cas05.txt33
-rw-r--r--npc/guild/gefg_cas01.txt33
-rw-r--r--npc/guild/gefg_cas02.txt33
-rw-r--r--npc/guild/gefg_cas03.txt33
-rw-r--r--npc/guild/gefg_cas04.txt33
-rw-r--r--npc/guild/gefg_cas05.txt33
-rw-r--r--npc/guild/payg_cas01.txt36
-rw-r--r--npc/guild/payg_cas02.txt33
-rw-r--r--npc/guild/payg_cas03.txt32
-rw-r--r--npc/guild/payg_cas04.txt32
-rw-r--r--npc/guild/payg_cas05.txt34
-rw-r--r--npc/guild/prtg_cas01.txt32
-rw-r--r--npc/guild/prtg_cas02.txt33
-rw-r--r--npc/guild/prtg_cas03.txt32
-rw-r--r--npc/guild/prtg_cas04.txt32
-rw-r--r--npc/guild/prtg_cas05.txt32
21 files changed, 87 insertions, 584 deletions
diff --git a/npc/guild/agit_template.txt b/npc/guild/agit_template.txt
index 9163ab582..7d9462b1f 100644
--- a/npc/guild/agit_template.txt
+++ b/npc/guild/agit_template.txt
@@ -39,6 +39,8 @@
//= 1.3 Fixed a loading flag emblem for Payon 1. [L0ne_W0lf]
//= Fixed two typos regarding Guild Steward name.
//= 1.4 Fixed a typo in defense investment. [L0ne_W0lf]
+//= 1.5 Fixed spawn point of the emperium in Payon 1. [L0ne_W0lf]
+//= Double-investing doubles the price now.
//============================================================
// AGIT Manager Template
@@ -93,7 +95,7 @@ OnStartArena:
else if (strnpcinfo(2) == "gefg_cas03") { setarray .@emproom[0],244,166; }
else if (strnpcinfo(2) == "gefg_cas04") { setarray .@emproom[0],174,177; }
else if (strnpcinfo(2) == "gefg_cas05") { setarray .@emproom[0],194,184; }
- else if (strnpcinfo(2) == "payg_cas01") { setarray .@emproom[0],138,138; }
+ else if (strnpcinfo(2) == "payg_cas01") { setarray .@emproom[0],139,139; }
else if (strnpcinfo(2) == "payg_cas02") { setarray .@emproom[0],38,25; }
else if (strnpcinfo(2) == "payg_cas03") { setarray .@emproom[0],268,264; }
else if (strnpcinfo(2) == "payg_cas04") { setarray .@emproom[0],270,28; }
@@ -251,7 +253,7 @@ OnRecvCastle:
monster strnpcinfo(2),0,0,"Kobold Archer",1282,4;
monster strnpcinfo(2),0,0,"Gargoyle",1253,5;
// Set Emperium room spawn coordinates and spawn monsters.
- if (strnpcinfo(2) == "payg_cas01") { setarray .@emproom[0],138,138; }
+ if (strnpcinfo(2) == "payg_cas01") { setarray .@emproom[0],139,139; }
else if (strnpcinfo(2) == "payg_cas02") { setarray .@emproom[0],38,25; }
else if (strnpcinfo(2) == "payg_cas03") { setarray .@emproom[0],268,264; }
else if (strnpcinfo(2) == "payg_cas04") { setarray .@emproom[0],270,28; }
@@ -515,6 +517,10 @@ OnRecvCastle:
if(.@Economy >= 65) set .@eco_invest,1280000;
if(.@Economy >= 76) set .@eco_invest,2560000;
if(.@Economy >= 88) set .@eco_invest,5120000;
+ //Double the cost of investing if you've already invested once.
+ if (GetCastleData(strnpcinfo(2),4)) {
+ set .@eco_invest,.@eco_invest*2;
+ }
mes "[ Steward " + .@name$ + " ]";
mes "If you raise commercial growth, the quantity of goods made by the guild will increase. So if you want a prosperous future, investment will be required.";
mes " ";
@@ -565,6 +571,10 @@ OnRecvCastle:
if(.@Defence >= 65) set .@def_invest,2560000;
if(.@Defence >= 76) set .@def_invest,5120000;
if(.@Defence >= 88) set .@def_invest,10240000;
+ //Double the cost of investing if you've already invested once.
+ if (GetCastleData(strnpcinfo(2),5)) {
+ set .@def_invest,.@def_invest*2;
+ }
mes "[ Steward " + .@name$ + " ]";
mes "If you raise the safeguard, the durability of the Guardians and emperium will increase. So if you expect more defenses in battles, investment will be required.";
mes " ";
diff --git a/npc/guild/aldeg_cas01.txt b/npc/guild/aldeg_cas01.txt
index 02cfcd50c..7cfbafb9e 100644
--- a/npc/guild/aldeg_cas01.txt
+++ b/npc/guild/aldeg_cas01.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Al De Baran Guild Castle 1
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -78,34 +79,7 @@ alde_gld,51,87,8 duplicate(Neuschwanstein2) Neuschwanstein#a1-5 722
// Guild Flag (Inside Castle)
//============================================================
aldeg_cas01,30,248,4 script Neuschwanstein#a1-6::Neuschwanstein3 722,{
- set .@GID, GetCastleData("aldeg_cas01",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleA01:
FlagEmblem GetCastleData("aldeg_cas01",1);
diff --git a/npc/guild/aldeg_cas02.txt b/npc/guild/aldeg_cas02.txt
index c61820aa6..0fa6e5b56 100644
--- a/npc/guild/aldeg_cas02.txt
+++ b/npc/guild/aldeg_cas02.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -11,6 +11,7 @@
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected flag-in spawn point. [L0ne_W0lf]
+//= 1.2 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -48,6 +49,7 @@ alde_gld,99,251,4 script Hohenschwangau#a2-2::Hohenschwangau2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("aldeg_cas02",1)) {
warp "aldeg_cas02",84,74;
+ //warp "aldeg_cas02",220,190;
end;
}
}
@@ -77,34 +79,7 @@ alde_gld,99,244,4 duplicate(Hohenschwangau2) Hohenschwangau#a2-3 722
// Guild Flag (Inside Castle)
//============================================================
aldeg_cas02,82,71,2 script Hohenschwangau#a2-4::Hohenschwangau3 722,{
- set .@GID, GetCastleData("aldeg_cas02",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleA02:
FlagEmblem GetCastleData("aldeg_cas02",1);
diff --git a/npc/guild/aldeg_cas03.txt b/npc/guild/aldeg_cas03.txt
index e976b799f..65b168469 100644
--- a/npc/guild/aldeg_cas03.txt
+++ b/npc/guild/aldeg_cas03.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Al De Baran Guild Castle 3
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -47,6 +48,7 @@ alde_gld,138,82,0 script Nuenberg#a3-2::Nuenberg2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("aldeg_cas03",1)) {
warp "aldeg_cas03",118,76;
+ //warp "aldeg_cas03",205,186;
end;
}
}
@@ -76,34 +78,7 @@ alde_gld,146,82,0 duplicate(Nuenberg2) Nuenberg#a3-3 722
// Guild Flag (Inside Castle)
//============================================================
aldeg_cas03,176,175,2 script Nuenberg#a3-4::Nuenberg3 722,{
- set .@GID, GetCastleData("aldeg_cas03",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleA03:
FlagEmblem GetCastleData("aldeg_cas03",1);
diff --git a/npc/guild/aldeg_cas04.txt b/npc/guild/aldeg_cas04.txt
index 20a603716..cb800228b 100644
--- a/npc/guild/aldeg_cas04.txt
+++ b/npc/guild/aldeg_cas04.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Al De Baran Guild Castle 4
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -47,6 +48,7 @@ alde_gld,239,246,2 script Wuerzburg#a4-2::Wuerzburg2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("aldeg_cas04",1)) {
warp "aldeg_cas04",45,88;
+ //warp "aldeg_cas04",116,217;
end;
}
}
@@ -76,34 +78,7 @@ alde_gld,239,239,2 duplicate(Wuerzburg2) Wuerzburg#a4-3 722
// Guild Flag (Inside Castle)
//============================================================
aldeg_cas04,167,61,2 script Wuerzburg#a4-4::Wuerzburg3 722,{
- set .@GID, GetCastleData("aldeg_cas04",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleA04:
FlagEmblem GetCastleData("aldeg_cas04",1);
diff --git a/npc/guild/aldeg_cas05.txt b/npc/guild/aldeg_cas05.txt
index 025637092..411f0f650 100644
--- a/npc/guild/aldeg_cas05.txt
+++ b/npc/guild/aldeg_cas05.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -11,6 +11,7 @@
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected flag-in spawn point. [L0ne_W0lf]
+//= 1.2 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -48,6 +49,7 @@ alde_gld,265,93,6 script Rothenburg#a5-2::Rothenburg2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("aldeg_cas05",1)) {
warp "aldeg_cas05",31,190;
+ //warp "aldeg_cas05",167,225;
end;
}
}
@@ -77,34 +79,7 @@ alde_gld,265,87,6 duplicate(Rothenburg2) Rothenburg#a5-3 722
// Guild Flag (Inside Castle)
//============================================================
aldeg_cas05,170,85,2 script Rothenburg#a5-4::Rothenburg3 722,{
- set .@GID, GetCastleData("aldeg_cas05",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleA05:
FlagEmblem GetCastleData("aldeg_cas05",1);
diff --git a/npc/guild/gefg_cas01.txt b/npc/guild/gefg_cas01.txt
index d9470de60..80fbbf439 100644
--- a/npc/guild/gefg_cas01.txt
+++ b/npc/guild/gefg_cas01.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Geffen Guild Castle 1
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -47,6 +48,7 @@ gef_fild13,148,51,5 script Repherion#g1-2::Repherion2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("gefg_cas01",1)) {
warp "gefg_cas01",83,47;
+ //warp "gefg_cas01",197,36;
end;
}
}
@@ -78,34 +80,7 @@ gef_fild13,211,71,6 duplicate(Repherion2) Repherion#g1-5 722
// Guild Flag (Inside Castle)
//============================================================
gefg_cas01,28,157,4 script Repherion#g1-6::Repherion3 722,{
- set .@GID, GetCastleData("gefg_cas01",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleG01:
FlagEmblem GetCastleData("gefg_cas01",1);
diff --git a/npc/guild/gefg_cas02.txt b/npc/guild/gefg_cas02.txt
index 77e88677c..48cac2e0c 100644
--- a/npc/guild/gefg_cas02.txt
+++ b/npc/guild/gefg_cas02.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Geffen Guild Castle 2
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -47,6 +48,7 @@ gef_fild13,303,243,4 script Eeyolbriggar#g2-2::Eeyolbriggar2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("gefg_cas02",1)) {
warp "gefg_cas02",23,66;
+ //warp "gefg_cas02",178,43;
end;
}
}
@@ -78,34 +80,7 @@ gef_fild13,324,243,4 duplicate(Eeyolbriggar2) Eeyolbriggar#g2-5 722
// Guild Flag (Inside Castle)
//============================================================
gefg_cas02,65,130,5 script Eeyolbriggar#g2-6::Eeyolbriggar3 722,{
- set .@GID, GetCastleData("gefg_cas02",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleG02:
FlagEmblem GetCastleData("gefg_cas02",1);
diff --git a/npc/guild/gefg_cas03.txt b/npc/guild/gefg_cas03.txt
index 4a8643260..b96bf1a18 100644
--- a/npc/guild/gefg_cas03.txt
+++ b/npc/guild/gefg_cas03.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Geffen Guild Castle 3
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -47,6 +48,7 @@ gef_fild13,78,182,4 script Yesnelph#g3-2::Yesnelph2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("gefg_cas03",1)) {
warp "gefg_cas03",116,89;
+ //warp "gefg_cas03",221,30;
end;
}
}
@@ -80,34 +82,7 @@ gef_fild13,144,244,4 duplicate(Yesnelph2) Yesnelph#g3-7 722
// Guild Flag (Inside Castle)
//============================================================
gefg_cas03,122,220,6 script Yesnelph#g3-8::Yesnelph3 722,{
- set .@GID, GetCastleData("gefg_cas03",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleG03:
FlagEmblem GetCastleData("gefg_cas03",1);
diff --git a/npc/guild/gefg_cas04.txt b/npc/guild/gefg_cas04.txt
index ac8463c94..7c4a97493 100644
--- a/npc/guild/gefg_cas04.txt
+++ b/npc/guild/gefg_cas04.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -11,6 +11,7 @@
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected treasure room switch coordinates. [L0ne_W0lf]
+//= 1.2 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -48,6 +49,7 @@ gef_fild13,190,283,3 script Bergel#g4-2::Bergel2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("gefg_cas04",1)) {
warp "gefg_cas04",59,70;
+ //warp "gefg_cas04",168 43;
end;
}
}
@@ -77,34 +79,7 @@ gef_fild13,199,274,3 duplicate(Bergel2) Bergel#g4-3 722
// Guild Flag (Inside Castle)
//============================================================
gefg_cas04,24,157,4 script Bergel#g4-4::Bergel3 722,{
- set .@GID, GetCastleData("gefg_cas04",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleG04:
FlagEmblem GetCastleData("gefg_cas04",1);
diff --git a/npc/guild/gefg_cas05.txt b/npc/guild/gefg_cas05.txt
index 6d05345e0..505d07b77 100644
--- a/npc/guild/gefg_cas05.txt
+++ b/npc/guild/gefg_cas05.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Geffen Guild Castle 5
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -47,6 +48,7 @@ gef_fild13,302,87,7 script Mersetzdeitz#g5-2::Mersetzdeitz2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("gefg_cas05",1)) {
warp "gefg_cas05",61,52;
+ //warp "gefg_cas05",168,31;
end;
}
}
@@ -78,34 +80,7 @@ gef_fild13,26,147,2 duplicate(Mersetzdeitz2) Mersetzdeitz#g5-5 722
// Guild Flag (Inside Castle)
//============================================================
gefg_cas05,77,185,7 script Mersetzdeitz#g5-5::Mersetzdeitz3 722,{
- set .@GID, GetCastleData("gefg_cas05",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastleG05:
FlagEmblem GetCastleData("gefg_cas05",1);
diff --git a/npc/guild/payg_cas01.txt b/npc/guild/payg_cas01.txt
index 4ea347ad8..f746551bc 100644
--- a/npc/guild/payg_cas01.txt
+++ b/npc/guild/payg_cas01.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -11,6 +11,8 @@
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected flag-in spawn point. [L0ne_W0lf]
+//= 1.2 Removed dialog from interior flags. [L0ne_W0lf]
+//= Fixed position of Guild dungeon switch.
//============================================================
// Guild Flag (Town)
@@ -50,6 +52,7 @@ pay_gld,125,236,4 script Bright Arbor#f1-3::BrightArbor2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("payg_cas01",1)) {
warp "payg_cas01",212,108;
+ //warp "payg_cas01",54 144;
end;
}
}
@@ -81,34 +84,7 @@ pay_gld,91,239,2 duplicate(BrightArbor2) Bright Arbor#f1-6 722
// Guild Flag (Inside Castle)
//============================================================
payg_cas01,238,67,4 script Bright Arbor#f1-7::BrightArbor3 722,{
- set .@GID, GetCastleData("payg_cas01",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePy01:
FlagEmblem GetCastleData("payg_cas01",1);
@@ -163,4 +139,4 @@ payg_cas01,291,8,0 duplicate(Gld_Trea_Spawn) Treasure#payg_cas01 -1
// Guild Dungeon Switch
//============================================================
-payg_cas01,78,84,0 duplicate(Gld_Dun_Template) #payg_cas01 111
+payg_cas01,101,25,0 duplicate(Gld_Dun_Template) #payg_cas01 111
diff --git a/npc/guild/payg_cas02.txt b/npc/guild/payg_cas02.txt
index d9a760e1c..8326d1a50 100644
--- a/npc/guild/payg_cas02.txt
+++ b/npc/guild/payg_cas02.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -11,6 +11,7 @@
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected flag-in spawn point. [L0ne_W0lf]
+//= 1.2 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -50,6 +51,7 @@ pay_gld,292,112,6 script Scarlet Palace#f2-3::ScarletPalace2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("payg_cas02",1)) {
warp "payg_cas02",22,275;
+ //warp "payg_cas02",278,251;
end;
}
}
@@ -81,34 +83,7 @@ pay_gld,271,163,0 duplicate(ScarletPalace2) Scarlet Palace#f2-6 722
// Guild Flag (Inside Castle)
//============================================================
payg_cas02,254,40,6 script Scarlet Palace#f2-7::ScarletPalace3 722,{
- set .@GID, GetCastleData("payg_cas02",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePy02:
FlagEmblem GetCastleData("payg_cas02",1);
diff --git a/npc/guild/payg_cas03.txt b/npc/guild/payg_cas03.txt
index f266a99cf..b9e9839d6 100644
--- a/npc/guild/payg_cas03.txt
+++ b/npc/guild/payg_cas03.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -11,6 +11,7 @@
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected treasure room switch coordinates. [L0ne_W0lf]
+//= 1.2 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -81,34 +82,7 @@ pay_gld,333,254,4 duplicate(HolyShadow2) Holy Shadow#f3-6 722
// Guild Flag (Inside Castle)
//============================================================
payg_cas03,236,54,2 script Holy Shadow#f3-7::HolyShadow3 722,{
- set .@GID, GetCastleData("payg_cas03",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePy03:
FlagEmblem GetCastleData("payg_cas03",1);
diff --git a/npc/guild/payg_cas04.txt b/npc/guild/payg_cas04.txt
index c80e52036..3836ecb6b 100644
--- a/npc/guild/payg_cas04.txt
+++ b/npc/guild/payg_cas04.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Payon Guild Castle 4
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -80,34 +81,7 @@ pay_gld,153,166,1 duplicate(SacredAltar2) Sacred Altar#f4-6 722
// Guild Flag (Inside Castle)
//============================================================
payg_cas04,255,259,0 script Sacred Altar#f4-7::SacredAltar3 722,{
- set .@GID, GetCastleData("payg_cas04",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePy04:
FlagEmblem GetCastleData("payg_cas04",1);
diff --git a/npc/guild/payg_cas05.txt b/npc/guild/payg_cas05.txt
index 2b1cfaa83..acf5eb2c2 100644
--- a/npc/guild/payg_cas05.txt
+++ b/npc/guild/payg_cas05.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Payon Guild Castle 5
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -49,7 +50,7 @@ pay_gld,208,268,4 script Bamboo Grove Hill#f5-3::BambooGroveHill2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("payg_cas05",1)) {
warp "payg_cas05",276,227;
- end;
+ //warp "payg_cas05",243;27; end;
}
}
close;
@@ -80,34 +81,7 @@ pay_gld,187,294,2 duplicate(BambooGroveHill2) Bamboo Grove Hill#f5-6 722
// Guild Flag (Inside Castle)
//============================================================
payg_cas05,32,249,4 script Bamboo Grove Hill#f5-7::BambooGroveHill3 722,{
- set .@GID, GetCastleData("payg_cas05",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePy05:
FlagEmblem GetCastleData("payg_cas05",1);
diff --git a/npc/guild/prtg_cas01.txt b/npc/guild/prtg_cas01.txt
index 2ec631b53..bdb5e5161 100644
--- a/npc/guild/prtg_cas01.txt
+++ b/npc/guild/prtg_cas01.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -12,6 +12,7 @@
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected flag-in spawn point. [L0ne_W0lf]
//= 1.2 Corrected treasure room switch coordinates. [L0ne_W0lf]
+//= 1.3 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -80,34 +81,7 @@ prt_gld,135,60,6 duplicate(Kriemhild2) Kriemhild#p1-5 722
// Guild Flag (Inside Castle)
//============================================================
prtg_cas01,58,56,4 script Kriemhild#p1-4::Kriemhild3 722,{
- set .@GID, GetCastleData("prtg_cas01",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePt01:
FlagEmblem GetCastleData("prtg_cas01",1);
diff --git a/npc/guild/prtg_cas02.txt b/npc/guild/prtg_cas02.txt
index b53312c52..a80a47047 100644
--- a/npc/guild/prtg_cas02.txt
+++ b/npc/guild/prtg_cas02.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= NPCs that relate to Prontera Guild Castle 1
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
+//= 1.1 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -47,6 +48,7 @@ prt_gld,244,126,8 script Swanhild#p2-2::Swanhild2 722,{
if (select("Return to the guild castle.:Quit.") == 1) {
if (getcharid(2) == GetCastleData("prtg_cas02",1)) {
warp "prtg_cas02",71,36;
+ //warp "prtg_cas02",169,55;
end;
}
}
@@ -78,34 +80,7 @@ prt_gld,236,128,8 duplicate(Swanhild2) Swanhild#p2-5 722
// Guild Flag (Inside Castle)
//============================================================
prtg_cas02,40,227,4 script Swanhild#p2-6::Swanhild3 722,{
- set .@GID, GetCastleData("prtg_cas02",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePt02:
FlagEmblem GetCastleData("prtg_cas02",1);
diff --git a/npc/guild/prtg_cas03.txt b/npc/guild/prtg_cas03.txt
index 63734d1e4..408b03123 100644
--- a/npc/guild/prtg_cas03.txt
+++ b/npc/guild/prtg_cas03.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -12,6 +12,7 @@
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected flag-in spawn point. [L0ne_W0lf]
//= 1.2 Corrected treasure room switch coordinates. [L0ne_W0lf]
+//= 1.3 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -81,34 +82,7 @@ prt_gld,158,136,4 duplicate(Fadhgridh2) Fadhgridh#p3-5 722
// Guild Flag (Inside Castle)
//============================================================
prtg_cas03,168,28,4 script Fadhgridh#p3-6::Fadhgridh3 722,{
- set .@GID, GetCastleData("prtg_cas03",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePt03:
FlagEmblem GetCastleData("prtg_cas03",1);
diff --git a/npc/guild/prtg_cas04.txt b/npc/guild/prtg_cas04.txt
index 8647ecc21..46acdec88 100644
--- a/npc/guild/prtg_cas04.txt
+++ b/npc/guild/prtg_cas04.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.2
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -11,6 +11,7 @@
//===== Additional Comments: =================================
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected flag-in spawn point. [L0ne_W0lf]
+//= 1.2 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -79,34 +80,7 @@ prt_gld,122,236,6 duplicate(Skoegul2) Skoegul#p4-5 722
// Guild Flag (Inside Castle)
//============================================================
prtg_cas04,82,29,4 script Skoegul#p4-6::Skoegul3 722,{
- set .@GID, GetCastleData("prtg_cas04",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePt04:
FlagEmblem GetCastleData("prtg_cas04",1);
diff --git a/npc/guild/prtg_cas05.txt b/npc/guild/prtg_cas05.txt
index 9574b2aea..887d22872 100644
--- a/npc/guild/prtg_cas05.txt
+++ b/npc/guild/prtg_cas05.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -12,6 +12,7 @@
//= 1.0 First Version. No longer uses functions. [L0ne_W0lf]
//= 1.1 Corrected flag-in spawn point. [L0ne_W0lf]
//= 1.2 Corrected treasure room switch coordinates. [L0ne_W0lf]
+//= 1.3 Removed dialog from interior flags. [L0ne_W0lf]
//============================================================
// Guild Flag (Town)
@@ -80,34 +81,7 @@ prt_gld,197,236,2 duplicate(Gondul2) Gondul#p5-5 722
// Guild Flag (Inside Castle)
//============================================================
prtg_cas05,19,247,4 script Gondul#p5-6::Gondul3 722,{
- set .@GID, GetCastleData("prtg_cas05",1);
- if (.@GID == 0) {
- mes " [ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Follow the ordinance of The Divine Rune Midgard Kingdom, ";
- mes "We declare that";
- mes "there is no formal master of this castle.";
- mes " ";
- mes "2. To the one who can ";
- mes "overcome all trials";
- mes "and destroy the Emperium,";
- mes "the king will endow the one with";
- mes "ownership of this castle.";
- }
- else {
- mes "[ Edict of the Divine Rune Midgard Kingdom ]";
- mes " ";
- mes "1. Following the ordinance of the";
- mes "Divine Rune Midgard Kingdom,";
- mes "we approve that this place is in";
- mes "the private possession of ^ff0000" + GetGuildName(.@GID) + "^000000 Guild.";
- mes " ";
- mes "2. The guild Master of ^ff0000"+ GetGuildName(.@GID) + "^000000 Guild is";
- mes "^FF0000" + GetGuildMaster(.@GID) + "^000000";
- mes "If there is anyone who objects to this,";
- mes " prove your strength and honor with a steel blade in your hand.";
- }
- close;
+ end;
OnRecvCastlePt05:
FlagEmblem GetCastleData("prtg_cas05",1);