diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-13 21:21:25 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-13 21:21:25 +0000 |
commit | 5008cab4cf555214eb89d8acbe1190676e13c93c (patch) | |
tree | 82590a1ba6362139bc5bca772f9920a3255a3daa /npc | |
parent | 8513e2c7176978544f71db79d314724b19bd5686 (diff) | |
download | hercules-5008cab4cf555214eb89d8acbe1190676e13c93c.tar.gz hercules-5008cab4cf555214eb89d8acbe1190676e13c93c.tar.bz2 hercules-5008cab4cf555214eb89d8acbe1190676e13c93c.tar.xz hercules-5008cab4cf555214eb89d8acbe1190676e13c93c.zip |
* Fixed a loading flag emblem for Payon 1.
- Also fixed two typos regarding Guild Steward name.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12708 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 3 | ||||
-rw-r--r-- | npc/guild/agit_template.txt | 10 |
2 files changed, 9 insertions, 4 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 2ab12f72d..93181105c 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,5 +1,8 @@ Date Added ====== +2008/05/13 + * Rev. 12708 Fixed a loading flag emblem for Payon 1. [L0ne_W0lf] + - Also fixed two typos regarding Guild Steward name. 2008/05/11 * Rev. 12701 Fixed guild manager charging twice for invest [L0ne_W0lf] - Corrected some treasure room switch sent-to spawns. diff --git a/npc/guild/agit_template.txt b/npc/guild/agit_template.txt index d9282f935..f38f5c291 100644 --- a/npc/guild/agit_template.txt +++ b/npc/guild/agit_template.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.2 +//= 1.3 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -36,6 +36,8 @@ //= 1.1 Daily investement will now be reset. [L0ne_W0lf] //= Template will no longer try to spawn chests. //= 1.2 Fixed Eco Invest option charging twice. [L0ne_W0lf] +//= 1.3 Fixed a loading flag emblem for Payon 1. [L0ne_W0lf] +//= Fixed two typos regarding Guild Steward name. //============================================================ // AGIT Manager Template @@ -304,7 +306,7 @@ OnRecvCastle: else if (strnpcinfo(2) == "gefg_cas03") { donpcevent "::OnRecvCastleG03"; } else if (strnpcinfo(2) == "gefg_cas04") { donpcevent "::OnRecvCastleG04"; } else if (strnpcinfo(2) == "gefg_cas05") { donpcevent "::OnRecvCastleG05"; } - else if (strnpcinfo(2) == "payg_cas01") { donpcevent "::OnRecvCastlePt01"; } + else if (strnpcinfo(2) == "payg_cas01") { donpcevent "::OnRecvCastlePy01"; } else if (strnpcinfo(2) == "payg_cas02") { donpcevent "::OnRecvCastlePy02"; } else if (strnpcinfo(2) == "payg_cas03") { donpcevent "::OnRecvCastlePy03"; } else if (strnpcinfo(2) == "payg_cas04") { donpcevent "::OnRecvCastlePy04"; } @@ -542,7 +544,7 @@ OnRecvCastle: set zeny,zeny-.@eco_invest; SetCastleData strnpcinfo(2),4,GetCastleData(strnpcinfo(2),4)+1; SetCastleData strnpcinfo(2),2,.@Economy + 1 + (.@Economy<99 && rand(2) && getgdskilllv(.@GID,10014)); - mes "[ Steward .@name$]"; + mes "[ Steward " + .@name$ + "]"; mes "We finished the investment safely. I expect that our growth level will be increased by tomorrow."; close; case 2: @@ -592,7 +594,7 @@ OnRecvCastle: set zeny,zeny-.@def_invest; SetCastleData strnpcinfo(2),5,GetCastleData(strnpcinfo(2),5)+1; SetCastleData strnpcinfo(2),3,.@Defence+1; - mes "[ Steward .@name$]"; + mes "[ Steward " + .@name$ + "]"; mes "We finished the investment safely. I expect that the safeguard level will be increased by tomorrow."; close; case 2: |