diff options
-rw-r--r-- | npc/functions/clientversion.txt | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index baef35d1d..260f5dd78 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -120,7 +120,22 @@ function script checkclientversion { if (.@dg) close; } - + // Valentine Day Event Bug + // sex fev 15 18:04:00 -02 2019 + if (UPDATE < 1550261040) { + UPDATE=1550261040; + if (#VALENTINE_POINTS) { + showavatar NPC_LOF_RICH; + mesn ("TMW2 Staff"); + mesc l("Hello, @@! We just looked up and found out you that you were affected on a Valentine Event bug!", strcharinfo(0)), 3; + mesc l("Due this bug, you didn't got a proper amount of points per sent. We wanted to deliver you a token of apology!"), 3; + mesc l("Sorry, and enjoy the game! Your TMW2 Staff Team."), 3; + mesc l("Token Of Apology: 1x @@, 1x @@", getitemlink(SilverGift), getitemlink(MercBoxB)); + getitem SilverGift, 1; + getitem MercBoxB, 1; + close; + } + } |