diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-14 18:34:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-14 18:34:01 -0300 |
commit | b06a96ba72d7bbfb5b1a5f4270dc11fa446ff3aa (patch) | |
tree | 93d141f162ccfe64fb5166a2d2aae91ee174279a /npc | |
parent | 6704ac98fdeca29c3efd8a73903cfd3f91783088 (diff) | |
download | serverdata-b06a96ba72d7bbfb5b1a5f4270dc11fa446ff3aa.tar.gz serverdata-b06a96ba72d7bbfb5b1a5f4270dc11fa446ff3aa.tar.bz2 serverdata-b06a96ba72d7bbfb5b1a5f4270dc11fa446ff3aa.tar.xz serverdata-b06a96ba72d7bbfb5b1a5f4270dc11fa446ff3aa.zip |
Rework Nard. Lazy people will get only 250 discount, but now it can go up
to a whooping 1000 GP discount. Requirements subject to change later.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/002-4/nard.txt | 12 | ||||
-rw-r--r-- | npc/functions/util.txt | 59 |
2 files changed, 66 insertions, 5 deletions
diff --git a/npc/002-4/nard.txt b/npc/002-4/nard.txt index aefa1f066..9ff46c1a1 100644 --- a/npc/002-4/nard.txt +++ b/npc/002-4/nard.txt @@ -164,12 +164,14 @@ L_NotYet: close; L_Travel: - if (getq(CandorQuest_Barrel) >= 4 && - getq(CandorQuest_HAS) >= 4 && - getq(CandorQuest_Sailors) >= 3 && - getq(CandorQuest_Vincent) >= 2 && - getq(CandorQuest_Trainer) >= 12) + if (nard_reputation() >= 11) + .@price-=1000; + else if (nard_reputation() >= 9) + .@price-=750; + else if (nard_reputation() >= 7) .@price-=500; + else if (nard_reputation() >= 5) + .@price-=250; mesn; mesq l("Hi @@.", strcharinfo(0)); next; diff --git a/npc/functions/util.txt b/npc/functions/util.txt index ae70b233d..10c9fbbfa 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -1,6 +1,8 @@ +// TMW2 Script. // Evol functions. // Authors: // Reid +// Jesusalva // Description: // Util functions @@ -33,3 +35,60 @@ function script season_direction { return (.@current_month / 3 + .@is_after_season_day) % 4; } + +// Returns Nard reputation for discounts +// Currently ranges from 0 to 11. +function script nard_reputation { + .@nr=0; // Base reputation + + // Valon Quest (+1 rep) + if (getq(CandorQuest_Trainer) >= 14) + .@nr=.@nr+1; + + // Zegas Quest (+1 rep) + if (getq(CandorQuest_Barrel) >= 4) + .@nr=.@nr+1; + + // Hide And Seek Quest (+1 rep) + if (getq(CandorQuest_HAS) >= 4) + .@nr=.@nr+1; + + // Sailors Quest (+1 rep) + if (getq(CandorQuest_Sailors) >= 3) + .@nr=.@nr+1; + + // Vincent Quest (+1 rep) + if (getq(CandorQuest_Vincent) >= 2) + .@nr=.@nr+1; + + // Tolchi Quest (+1 rep) + if (getq(CandorQuest_Tolchi) >= 4) + .@nr=.@nr+1; + + // Maya Quest (+1 rep) + if (getq(CandorQuest_Maya) >= 4) + .@nr=.@nr+1; + + // Dan Quest (+1 rep) + if (getq(ShipQuests_Dan) >= 3) + .@nr=.@nr+1; + + // Chef Gado Quest (+1 rep) + if (getq(ShipQuests_ChefGado) >= 2) + .@nr=.@nr+1; + + // Peter Quest (+1 rep) + if (getq(ShipQuests_Peter) == 3 || getq(ShipQuests_Peter) == 5) + .@nr=.@nr+1; + + // Swezanne Quest (+1 rep) + if (getq(TulimsharQuest_Swezanne) >= 1) + .@nr=.@nr+1; + + //debugmes "Reputation: "+str(.@nr); + return .@nr; + +} + + + |