diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/clientversion.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 83a2f64ac..9b0438e7b 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -715,6 +715,43 @@ function script clientupdater { dispbottom l("Thank you for being with us for so long. You gained a %s as a random good-hearted action from the team!", getitemlink(StrangeCoin)); } } + // Quest Changes + // sáb fev 8 04:15:47 BRT 2020 + if (UPDATE < 1581146147) { + UPDATE=1581146147; + // Lt. Paul new rewards + .@fc=getq(HurnscaldQuest_Lieutenant); + // I doubt there's someone 15+ + // This is a huge implicit fallthrough, + // Making you inheir all previous rewards + switch (.@fc) { + case 15: + getitem YerbaMate, 1; + getitem PrismGift, 1; + getitem MysteriousFruit, 1; + case 14: + getitem JasmineTea, 1; + getitem GoldenGift, 1; + getitem MercBoxEE, 1; + case 13: + getitem OolongTea, 1; + getitem GoldenGift, 1; + getitem SacredLifePotion, 1; + case 12: + getitem SpearmintTea, 1; + getitem SilverGift, 1; + getitem PrecisionPotion, 1; + case 11: + getitem ChamomileTea, 1; + getitem SilverGift, 1; + getitem WhiskeyAle, 1; + case 10: + getitem Coffee, 1; + getitem BronzeGift, 1; + getitem Grenade, 1; + dispbottom l("Lt. Paul unclaimed rewards REDEEMED."); + } + } // :// End of Regular Update System //////////////////////////////////// |