diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-01 01:32:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-01 01:32:53 -0300 |
commit | 98a3a6391e5d712ff56c89b3dc185c8d69b3ee3e (patch) | |
tree | 178076b1f435735e6941edb7578f21e63e0c9662 /npc/003-2 | |
parent | dfc2250457ad340b6037e990f62bce3d9996fd1a (diff) | |
download | serverdata-98a3a6391e5d712ff56c89b3dc185c8d69b3ee3e.tar.gz serverdata-98a3a6391e5d712ff56c89b3dc185c8d69b3ee3e.tar.bz2 serverdata-98a3a6391e5d712ff56c89b3dc185c8d69b3ee3e.tar.xz serverdata-98a3a6391e5d712ff56c89b3dc185c8d69b3ee3e.zip |
Politics: Allow election for Tulimshar, Halinarzo, Land Of Fire, Nivalis and Frostia.
This means all six towns are now working. Tulimshar application tax is 60 GP!
Diffstat (limited to 'npc/003-2')
-rw-r--r-- | npc/003-2/_import.txt | 1 | ||||
-rw-r--r-- | npc/003-2/politics.txt | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/npc/003-2/_import.txt b/npc/003-2/_import.txt index f6711989e..f355c5192 100644 --- a/npc/003-2/_import.txt +++ b/npc/003-2/_import.txt @@ -6,3 +6,4 @@ "npc/003-2/hiddenwarp.txt", "npc/003-2/lua.txt", "npc/003-2/mapflags.txt", +"npc/003-2/politics.txt", diff --git a/npc/003-2/politics.txt b/npc/003-2/politics.txt new file mode 100644 index 000000000..176e4ef44 --- /dev/null +++ b/npc/003-2/politics.txt @@ -0,0 +1,53 @@ +// TMW2 Scripts +// Author: +// Jesusalva +// Description: +// Town Administrator file, see npc/functions/politics.txt +// User variables: +// #POL_APPLYWEEK = Week of last application +// #POL_VOTEDAY = Day of last vote + +003-2,29,35,0 script Tulimshar Office NPC_POLITICS,{ +do +{ + mesc ".:: "+l("Tulimshar Townhall")+" ::.", 2; + mesc l("Current Town Administrator: ")+$TULIM_MAYOR$, 3; + mesc l("Application fee: @@ GP", .applytax); + next; + select + l("Information"), + rif(#POL_APPLYWEEK != gettimeparam(GETTIME_WEEKDAY), l("Apply for the office!")), + l("View Candidate List and cast a vote"), + l("[Quit]"); + + switch (@menu) { + case 1: + POL_Information(); + break; + case 2: + // array_push might be too sensible for getd/setd + if (Zeny < .applytax) + break; + Zeny-=.applytax; + $TULIM_MONEY+=.applytax; + #POL_APPLYWEEK=gettimeparam(GETTIME_WEEKDAY); + array_push($TULIM_CANDIDATE$, strcharinfo(0)); + array_push($TULIM_VOTES, 0); + mesc l("Application successful!"), 3; + next; + break; + case 3: + POL_Candidate("TULIM"); + break; + default: + close; + } +} while (true); +end; + +OnInit: + .applytax=60; + .distance=4; + end; +} + |