summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-05-24 14:38:00 -0300
committerJesusaves <cpntb1@ymail.com>2020-05-24 14:38:00 -0300
commit17ed7c5048c0348c2e680b7cc0e5d1512fb912df (patch)
tree025fd0b829e9551fd0af93aa0b076bb174b3c514 /npc/functions
parent9d29603458bdf9285722e48f8f0f7ec10eaa6771 (diff)
downloadserverdata-17ed7c5048c0348c2e680b7cc0e5d1512fb912df.tar.gz
serverdata-17ed7c5048c0348c2e680b7cc0e5d1512fb912df.tar.bz2
serverdata-17ed7c5048c0348c2e680b7cc0e5d1512fb912df.tar.xz
serverdata-17ed7c5048c0348c2e680b7cc0e5d1512fb912df.zip
Export Investments: Tweaked sightly
Investing in Taxes: 10% more effective
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/politics.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt
index e99079b19..b97cdfb12 100644
--- a/npc/functions/politics.txt
+++ b/npc/functions/politics.txt
@@ -396,7 +396,7 @@ function script POL_Manage {
if (askyesno() == ASK_YES) {
.@GP=getd("$"+getarg(0)+"_MONEY");
setd(.@town$+"_MONEY", .@GP-.@cost);
- setd(.@town$+"_EXPORT", .@EX+3);
+ setd(.@town$+"_EXPORT", .@EX+rand2(4,6));
mesc l("Investment executed"), 2;
next;
}
@@ -424,7 +424,7 @@ function script POL_Manage {
break;
// Mark 30: TAXES
case 30:
- .@cost=.@TX/10;
+ .@cost=.@TX/11;
mesc l("Raising Taxes"), 3;
mesc l("You need @@ Reputation to make this investment.", .@cost);
mesc l("Taxes will raise in 0.01~0.03%, capped at 10%.");