diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-14 23:59:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-14 23:59:59 -0300 |
commit | fd5bfe1aaee2a55b1e4adcc72ea67cadeffffbd6 (patch) | |
tree | 3e3a857340b8aceb1548f591384806da5f30fb46 /npc/items | |
parent | 811e4ea002ff5ddd21a9088229a42ebdc7aefb84 (diff) | |
download | serverdata-fd5bfe1aaee2a55b1e4adcc72ea67cadeffffbd6.tar.gz serverdata-fd5bfe1aaee2a55b1e4adcc72ea67cadeffffbd6.tar.bz2 serverdata-fd5bfe1aaee2a55b1e4adcc72ea67cadeffffbd6.tar.xz serverdata-fd5bfe1aaee2a55b1e4adcc72ea67cadeffffbd6.zip |
Valentine
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/valentine.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/npc/items/valentine.txt b/npc/items/valentine.txt new file mode 100644 index 000000000..259b4fcb3 --- /dev/null +++ b/npc/items/valentine.txt @@ -0,0 +1,22 @@ +// TMW-2 script. +// Author: +// Jesusalva +// Description: +// Valentine eating + +// Create a random card, with rares +function script EatValentineChocolate { + if ($EVENT$ != "Valentine" || #VALENTINE_OPENED >= #VALENTINE_RECEIVED) { + dispbottom l("Past due date."); + } else { + // I know technically this is wrong grammar, but I want fixed width + #VALENTINE_OPENED=#VALENTINE_OPENED+1; + #VALENTINE_POINTS=#VALENTINE_POINTS+1; + if (rand(0,1)) + dispbottom l("It's tasty ^.^"); + else + dispbottom l("It's yummy ^.^"); + } + return; +} + |