diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-08 04:19:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-08 04:19:42 -0300 |
commit | 2454b9a5b03a53f61402f95258c9dbeaee973628 (patch) | |
tree | f7b60b1e4f39159e9e38750b1e1fa530d5704357 /npc/functions/clientversion.txt | |
parent | 0ab16585b34416ba1b124dee7218da8d136165cf (diff) | |
download | serverdata-2454b9a5b03a53f61402f95258c9dbeaee973628.tar.gz serverdata-2454b9a5b03a53f61402f95258c9dbeaee973628.tar.bz2 serverdata-2454b9a5b03a53f61402f95258c9dbeaee973628.tar.xz serverdata-2454b9a5b03a53f61402f95258c9dbeaee973628.zip |
Recursively redeem any reward missed from Lt. Paul
Diffstat (limited to 'npc/functions/clientversion.txt')
-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 //////////////////////////////////// |