diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-09 17:21:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-09 17:21:59 -0300 |
commit | 8df106c0fb7a325c501e70f53b89950856491779 (patch) | |
tree | 467b9e40fc021f7e1c6ba121e1d435a34658c58a /npc/020-7-1/politics.txt | |
parent | bc17d3c270266b0477fdc88d38e053ddfb712cb1 (diff) | |
download | serverdata-8df106c0fb7a325c501e70f53b89950856491779.tar.gz serverdata-8df106c0fb7a325c501e70f53b89950856491779.tar.bz2 serverdata-8df106c0fb7a325c501e70f53b89950856491779.tar.xz serverdata-8df106c0fb7a325c501e70f53b89950856491779.zip |
Town Admin basic infrastructure:
Invest in exports. Raise reputation. Control taxes. Resign the Office.
Diffstat (limited to 'npc/020-7-1/politics.txt')
-rw-r--r-- | npc/020-7-1/politics.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/020-7-1/politics.txt b/npc/020-7-1/politics.txt index a665c04ec..2653b84a5 100644 --- a/npc/020-7-1/politics.txt +++ b/npc/020-7-1/politics.txt @@ -17,6 +17,7 @@ do next; select l("Information"), + rif(strcharinfo(0) == $NIVAL_MAYOR$, l("Manage Town")), rif(#POL_APPLYWEEK != gettimeparam(GETTIME_WEEKDAY), l("Apply for the office!")), l("View Candidate List and cast a vote"), l("[Quit]"); @@ -26,6 +27,9 @@ do POL_Information(); break; case 2: + POL_Manage("NIVAL"); + break; + case 3: // array_push might be too sensible for getd/setd if (Zeny < .applytax) break; @@ -37,7 +41,7 @@ do mesc l("Application successful!"), 3; next; break; - case 3: + case 4: POL_Candidate("NIVAL"); break; default: |