summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-09-11 12:44:14 -0300
committerJesusaves <cpntb1@ymail.com>2019-09-11 12:44:14 -0300
commit85138253ae1d1a60dc73d9cf0d3dca0aedb7a31c (patch)
tree291eb169deb53cb33ca947e2def5a907337782d5
parentffd7cd37034bb49d535edc5ea25f3879561748f3 (diff)
downloadserverdata-85138253ae1d1a60dc73d9cf0d3dca0aedb7a31c.tar.gz
serverdata-85138253ae1d1a60dc73d9cf0d3dca0aedb7a31c.tar.bz2
serverdata-85138253ae1d1a60dc73d9cf0d3dca0aedb7a31c.tar.xz
serverdata-85138253ae1d1a60dc73d9cf0d3dca0aedb7a31c.zip
Raise sale tax
-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 1d4c89bf7..a3721cf7c 100644
--- a/npc/functions/politics.txt
+++ b/npc/functions/politics.txt
@@ -45,7 +45,7 @@ function script PurchaseTaxes {
return;
}
-// Proccess Taxes from sales (5% from purchase tax)
+// Proccess Taxes from sales (7% from purchase tax)
// SaleTaxes( Location )
function script SaleTaxes {
.@tax=0;
@@ -56,7 +56,7 @@ function script SaleTaxes {
}
.@loc$=strtoupper(getarg(0, LOCATION$));
.@vat=getd("$"+.@loc$+"_TAX");
- .@vat=.@vat/20; // Only 5% of purchase tax, this is often 0.05%
+ .@vat=.@vat/15; // Only 7% of purchase tax, this is often 0.07%
.@tax=.@tax*.@vat/10000;
if (.@tax) {
debugmes "Sale: %s paid %d in taxes to %s prefecture!", strcharinfo(0), .@tax, .@loc$;