diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/clientversion.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 93efeaa34..2bc2d7a09 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1115,6 +1115,21 @@ function script clientupdater { if (getq3(SQuest_Christmas) && getq(SQuest_Christmas) == gettime(GETTIME_YEAR)) getexp (getq3(SQuest_Christmas) / 150), (getq3(SQuest_Christmas) / 250); } + // Pet Detective Event Update + // sáb 07 out 2023 11:27:04 -03 + if (UPDATE < 1696688824) { + UPDATE=1696688824; + if (countitem(BhopEgg)) { + #EVFEATS = #EVFEATS | EVFEAT_EASTER; + } + if (countitem(DoggyDog)) { + #EVFEATS = #EVFEATS | EVFEAT_EASTER; + } + if (countitem(CattyCat)) { + #EVFEATS = #EVFEATS | EVFEAT_EASTER; + } + // Black Cat & Pinkie - not yet implemented + } // :// End of Regular Update System //////////////////////////////////// |