diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-07-26 02:10:20 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-07-26 02:10:20 -0300 |
commit | 6d5ad4af99e1c8c11b52ae6d54184ed67eb2ca16 (patch) | |
tree | 5775a326c07ca2d0af2a4e8b3ec6c85f8fa31d52 /npc/functions/event.txt | |
parent | ea25cb9d91b82c4d2d430a94f5ae1c166cc52a56 (diff) | |
download | serverdata-6d5ad4af99e1c8c11b52ae6d54184ed67eb2ca16.tar.gz serverdata-6d5ad4af99e1c8c11b52ae6d54184ed67eb2ca16.tar.bz2 serverdata-6d5ad4af99e1c8c11b52ae6d54184ed67eb2ca16.tar.xz serverdata-6d5ad4af99e1c8c11b52ae6d54184ed67eb2ca16.zip |
And a typo on cherry
Diffstat (limited to 'npc/functions/event.txt')
-rw-r--r-- | npc/functions/event.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/event.txt b/npc/functions/event.txt index 7c7b7a8e2..1de8d7ef0 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -229,7 +229,7 @@ function script ChocolateDay { ChocolateMouboo, ChocolateBiscuit, ChocolateBunny, ChocolateBar, ChocolateBar, ChocolateBar, ChocolateBar, ChocolateDye, ChocolateBar, ChocolateBar, ChocolateBar); - getmapxy(.@m$, .@x, .@y); + getmapxy(.@m$, .@x, .@y, 0); .@x+=rand2(-1,1); .@y+=rand2(-1,1); makeitem(.@choco, 1, .@m$, .@x, .@y); @@ -251,7 +251,7 @@ function script CoffeeDay { // Max. 22% chances, 0.1% per monster level .@lv=min(200, getmonsterinfo(killedrid, MOB_LV)); if (rand2(10000) < (.@lv*11)) { - getmapxy(.@m$, .@x, .@y); + getmapxy(.@m$, .@x, .@y, 0); .@x+=rand2(-1,1); .@y+=rand2(-1,1); makeitem(Coffee, 1, .@m$, .@x, .@y); |