summaryrefslogtreecommitdiff
path: root/npc/guild2/arug_cas02.txt
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-05-24 07:59:43 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-05-24 07:59:43 +0000
commit285c3820a753982afc30e20286565e74be9b3008 (patch)
treed6f3596841d58171bcacee3eb9e20c820cc1d589 /npc/guild2/arug_cas02.txt
parentdfe674f0482005f4d8e915e58daad8b414084a7f (diff)
downloadhercules-285c3820a753982afc30e20286565e74be9b3008.tar.gz
hercules-285c3820a753982afc30e20286565e74be9b3008.tar.bz2
hercules-285c3820a753982afc30e20286565e74be9b3008.tar.xz
hercules-285c3820a753982afc30e20286565e74be9b3008.zip
- Fixed a possible exploit in guild castle investment. (bugreport:4929, topic:272783)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14833 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild2/arug_cas02.txt')
-rw-r--r--npc/guild2/arug_cas02.txt24
1 files changed, 21 insertions, 3 deletions
diff --git a/npc/guild2/arug_cas02.txt b/npc/guild2/arug_cas02.txt
index 369475d19..c29643ba7 100644
--- a/npc/guild2/arug_cas02.txt
+++ b/npc/guild2/arug_cas02.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 2.2
+//= 2.3
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -26,6 +26,7 @@
//= 2.1 Applied updated eco/def systems. [L0ne_W0lf]
//= 2.2 Fixed eco/def not actually incrementing. [L0ne_W0lf]
//= Can no longer gain eco/def higher than 100.
+//= 2.3 Fixed a possible exploit in guild castle investment. [Brian]
//============================================================
arug_cas02,1,1,0 script Manager#aru02_02 111,{
@@ -2322,7 +2323,7 @@ arug_cas02,303,341,3 script Steward#aru02 55,{
mes "any further than that.";
close;
}
- if (GetCastleData("arug_cas02",4) == 2) {
+ if (GetCastleData("arug_cas02",4) >= 2) {
mes "[ Steward ]";
mes "You've already made two";
mes "investments today, so you'll";
@@ -2348,6 +2349,14 @@ arug_cas02,303,341,3 script Steward#aru02 55,{
next;
switch(select("Invest in Commercial Growth:Cancel")) {
case 1:
+ if (GetCastleData("arug_cas02",4) >= 2) {
+ mes "[ Steward ]";
+ mes "You've already made two";
+ mes "investments today, so you'll";
+ mes "have to wait until tomorrow";
+ mes "to make another investment.";
+ close;
+ }
if (Zeny < .@eco_invest) {
mes "[ Steward ]";
mes "I'm sorry, Master, but";
@@ -2416,7 +2425,7 @@ arug_cas02,303,341,3 script Steward#aru02 55,{
mes "cannot be increased further.";
close;
}
- if (GetCastleData("arug_cas02",5) == 2) {
+ if (GetCastleData("arug_cas02",5) >= 2) {
mes "Master, you've already";
mes "invested in Defense twice";
mes "today. You'll need to wait";
@@ -2440,6 +2449,15 @@ arug_cas02,303,341,3 script Steward#aru02 55,{
next;
switch(select("Invest in Defense:Cancel")) {
case 1:
+ if (GetCastleData("arug_cas02",5) >= 2) {
+ mes "[ Steward ]";
+ mes "Master, you've already";
+ mes "invested in Defense twice";
+ mes "today. You'll need to wait";
+ mes "until tomorrow if you really";
+ mes "want to increase our defenses.";
+ close;
+ }
if (Zeny < .@def_invest) {
mes "[ Steward ]";
mes "I'm sorry, Master, but";