From f59ea1556d4c90882ca161cd67f60cb2b82a5d63 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 10 Jun 2018 22:16:51 -0300 Subject: Rewrite how La Marine charges for travels --- npc/functions/util.txt | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) (limited to 'npc/functions') diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 509d4bd15..dfdd763af 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -107,6 +107,100 @@ function script nard_reputation { } +/* +// Calcs maximum reputation for each destination +function script marine_maxre { + if (getarg(0) == "Tulim") + return 10; + if (getarg(0) == "Hurns") + return 3; + dispbottom l("Error, marine_maxre invalid @@", getarg(0, "-NO ARGS SUPPLIED-")); + return -1; +} +*/ + +// Returns reputation with the La Marine for discounts +// Takes one argument (PC_DEST$). Grep for "getarg". +// Before updating this, update marine_maxre too! +function script marine_reputation { + .@nr=0; // Base reputation + + // Tulimshar Quests (10 points) + if (getarg(0) == "Tulim") { + // Swezanne Quest (+1 rep) + if (getq(TulimsharQuest_Swezanne) >= 1) + .@nr=.@nr+1; + + // Sailors Quest (+1 rep) + if (getq(TulimsharQuest_Sailors) >= 2) + .@nr=.@nr+1; + + // Hasan Quest (+1 rep) + if (getq(TulimsharQuest_Hasan) >= 5) + .@nr=.@nr+1; + + // Dausen Quest (+1 rep) + if (getq(TulimsharQuest_WaterForGuard) >= 3) + .@nr=.@nr+1; + + // Eugene Quest (+1 rep) + if (getq(TulimsharQuests_Fishman) >= 2) + .@nr=.@nr+1; + + // Sarah Quest (+1 rep) + if (getq(TulimsharQuest_Sarah) >= 1) + .@nr=.@nr+1; + + // Silvia Quest (+1 rep) + if (getq(TulimsharQuest_Lifestone) >= 2) + .@nr=.@nr+1; + + /* + // Eisten Quest (+1 rep) + if (getq(TulimsharQuest_Eistein) >= 6) + .@nr=.@nr+1; + */ + + // Devoir Quest (+1 rep) + if (getq(TulimsharQuest_Devoir) >= 1) + .@nr=.@nr+1; + + // Zarkor Quest (+1 rep) + if (getq(TulimsharQuest_DarkInvocator) >= 7) + .@nr=.@nr+1; + + /* + // Anwar Quest (+1 rep) + if (getq(TulimsharQuest_AnwarField) >= 99) + .@nr=.@nr+1; + */ + + // Tycoon Quest (+1 rep) + if (getq(MineQuest_Tycoon) >= 15) + .@nr=.@nr+1; + + // Hurnscald Quests (3 points) + } else if (getarg(0) == "Hurns") { + + // Alan Quest (+1 rep) + if (getq(HurscaldQuest_ForestBow) >= 2) + .@nr=.@nr+1; + + // Gwendolyn Quest (+1 rep) + if (getq(HurnscaldQuest_HarkEye) >= 6) + .@nr=.@nr+1; + + // Celestia Quest (+1 rep) + if (getq(HurnscaldQuest_TeaParty) >= 2) + .@nr=.@nr+1; + + } + + //debugmes "Reputation: "+str(.@nr); + return .@nr; + +} + // Returns time for ship travel. // Can be modified by a factor. -- cgit v1.2.3-60-g2f50