diff options
Diffstat (limited to 'npc/functions/mob_points.txt')
-rw-r--r-- | npc/functions/mob_points.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/npc/functions/mob_points.txt b/npc/functions/mob_points.txt new file mode 100644 index 00000000..9e8dad92 --- /dev/null +++ b/npc/functions/mob_points.txt @@ -0,0 +1,42 @@ +// Mob points + +function script MobPoints { + if (@mobID < 1002) return; + + setarray @points, + 1, // Maggot + 2, // Scorpion + 20, // Red Scorpion + 10, // Green Slime + 30, // Giant Maggot + 15, // Yellow Slime + 25, // Red Slime + 45, // Black Scorpion + 50, // Snake + 4, // Fire Goblin + 55, // Spider + 23, // Evil Mushroom + 35, // Flower + 40, // Santa Slime + 15, // Rudolph Slime + 2, // Bat + 16, // Pinkie + 17, // Shroom + 14, // Fluffy + 25, // Cave Snake + 100, // Jack-O + 80, // Fire Skull + 80, // Poison Skull + 20, // Stumpy + 70, // Mountain Snake + 15, // Easter Fluffy + 40, // Mouboo + 0, // Mauve Plant + 0, // Gamboge Plant + 0, // Cobalt Plant + 0, // Alizarin Plant + 20, // Sea Slime + 0; // Silk Worm + + if (MPQUEST == 1) set Mobpt, Mobpt + @points[@mobID - 1002]; +} |