diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-12 17:14:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-12 17:14:32 -0300 |
commit | 52f8f443bdc9287bcb5d51b4b7465e7388b96069 (patch) | |
tree | f19c58b798ec6d7f4a2992a80c30c0b31c80b0a8 /npc | |
parent | 70f80ae033c27120bf6fe5e0ac81c67d9459c5df (diff) | |
download | serverdata-52f8f443bdc9287bcb5d51b4b7465e7388b96069.tar.gz serverdata-52f8f443bdc9287bcb5d51b4b7465e7388b96069.tar.bz2 serverdata-52f8f443bdc9287bcb5d51b4b7465e7388b96069.tar.xz serverdata-52f8f443bdc9287bcb5d51b4b7465e7388b96069.zip |
Raise Christmas Ticket Drop Rate.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/mob_points.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/mob_points.txt b/npc/functions/mob_points.txt index ca1edaba..e6503a74 100644 --- a/npc/functions/mob_points.txt +++ b/npc/functions/mob_points.txt @@ -16,13 +16,13 @@ function script MobPoints { @mobId=killedrid; if (isChristmas21() && compare(getmap(), "@"+callfunc("X21ID2"))) { - if (getmonsterinfo(@mobId, MOB_LV) >= 150 && rand2(5) == 1) + if (getmonsterinfo(@mobId, MOB_LV) >= 150 && rand2(4) == 1) getitem XmasTicket, 2; else if (getmonsterinfo(@mobId, MOB_LV) >= 100 && rand2(4) == 1) getitem XmasTicket, 1; - else if (getmonsterinfo(@mobId, MOB_LV) > 50 && rand2(7) == 3) + else if (getmonsterinfo(@mobId, MOB_LV) > 50 && rand2(6) == 3) getitem XmasTicket, 1; - else if (rand2(12) == 3) + else if (rand2(11) == 3) getitem XmasTicket, 1; } |