summaryrefslogtreecommitdiff
path: root/world/map/npc/items/tmwgift.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/items/tmwgift.txt')
-rw-r--r--world/map/npc/items/tmwgift.txt32
1 files changed, 0 insertions, 32 deletions
diff --git a/world/map/npc/items/tmwgift.txt b/world/map/npc/items/tmwgift.txt
deleted file mode 100644
index ebc3f7b6..00000000
--- a/world/map/npc/items/tmwgift.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-function|script|MaybeAnnounceBirthday
-{
- if (gettime(7) == 2019 && gettime(6) == 4 && gettime(5) == 11)
- goto L_B15;
- return;
-
-L_B15:
- announce "It is TMW's 15th Anniversary! Log out and log back in to [@@https://themanaworld.org/15|receive your present@@]", 0;
- return;
-}
-
-function|script|MaybeGiveBirthday
-{
- if ((gettime(7) == 2019) && (gettime(6) == 4) &&
- ((gettime(5) == 11) || (gettime(5) == 12) || (gettime(5) == 13)) &&
- #TMW15 == 0)
- goto L_Give;
- return;
-
-L_Give:
- set #TMW15, gettimetick(2);
- getitem "TMWBirthdayGift", 1;
- message strcharinfo(0), "Server : ##BIt's TMW's 15th Anniversary! You have [@@https://themanaworld.org/15|received a present@@]!";
- return;
-}
-
-function|script|TMWBirthdayGift
-{
- setarray .@gifts$, "RedPresentHat", "GreenPresentHat", "BluePresentHat", "YellowPresentHat";
- getitem .@gifts$[rand(4)], 1;
- return;
-}