diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-20 23:30:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-20 23:30:01 -0300 |
commit | cf3f1fe4348c4e4e44919a5de7f2e92d838127bf (patch) | |
tree | 5aad829d199975b46c6e9ee0a77f971c8e16c567 | |
parent | 355d4a09917936699d6f5d3c1ca31f68bd44ab81 (diff) | |
download | serverdata-cf3f1fe4348c4e4e44919a5de7f2e92d838127bf.tar.gz serverdata-cf3f1fe4348c4e4e44919a5de7f2e92d838127bf.tar.bz2 serverdata-cf3f1fe4348c4e4e44919a5de7f2e92d838127bf.tar.xz serverdata-cf3f1fe4348c4e4e44919a5de7f2e92d838127bf.zip |
Bonus!
-rw-r--r-- | npc/functions/clientversion.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index f588c3e57..c4b8faaa1 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1170,6 +1170,20 @@ function script clientupdater { dispbottom l("You received the @@ from @@.", getitemlink(Lightbringer), l("The Mana Source")); } } + // Cooking System release + // sáb 20 jan 2024 23:24:34 -03 + if (UPDATE < 1705803874) { + UPDATE=1705803874; + dispbottom l("After five years of wait, cooking system was released! Hooray!"); + // Attempt to give you some food... If it fails, it is not my problem + if (checkweight(NPCEyes, 3)) { + rentitem(ShellSandwich, 86400); + rentitem(ZombieNachos, 86400); + rentitem(any(PepperoniPizza, Sushi, SteakAndEggs, FruitSalad), 86400); + } else if (checkweight(NPCEyes, 1)) { + rentitem(ShellSandwich, 86400); + } + } // TODO: Anniversary (leap years disregarded) // :// End of Regular Update System |