diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-02 17:22:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-02 17:22:06 -0300 |
commit | 48d0deea88af0e3dbf9aa85822f5b5e9d2ee7b2f (patch) | |
tree | 538037f1ac0e500c0e0aeef46b109abe998840b8 /npc/functions | |
parent | 6490d9175ba17732cd8a078e40903ee423f2747f (diff) | |
download | serverdata-48d0deea88af0e3dbf9aa85822f5b5e9d2ee7b2f.tar.gz serverdata-48d0deea88af0e3dbf9aa85822f5b5e9d2ee7b2f.tar.bz2 serverdata-48d0deea88af0e3dbf9aa85822f5b5e9d2ee7b2f.tar.xz serverdata-48d0deea88af0e3dbf9aa85822f5b5e9d2ee7b2f.zip |
It's possible to evade taxes, both when buying and selling.
I'll need to force script to run event simply if it exists later, but for now...
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/politics.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/politics.txt b/npc/functions/politics.txt index 773607b31..5679efa82 100644 --- a/npc/functions/politics.txt +++ b/npc/functions/politics.txt @@ -62,7 +62,7 @@ function script SaleTaxes { debugmes "Sale: %s paid %d in taxes to %s prefecture!", strcharinfo(0), .@tax, .@loc$; .@gp=getd("$"+.@loc$+"MONEY"); setd("$"+.@loc$+"_MONEY", .@gp+.@tax); - Zeny-=.@tax; + //Zeny-=.@tax; dispbottom col(l("%s is happy because you've paid %d GP in taxes!", getd("$"+.@loc$+"_MAYOR$"), .@tax), 1); } return; |