summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/mob_points.txt6
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;
}