|
@@ -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:
|