diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2013-05-13 20:47:04 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2013-05-27 19:31:51 +0200 |
commit | f425e4b2261b920f08721e6283d58164620a29c5 (patch) | |
tree | 78a87a8da1956c930e8be2d4d85a085a117838a5 /world/map/npc/functions | |
parent | 69e0699619003a90d879bab4572d0a96f52075c2 (diff) | |
download | serverdata-f425e4b2261b920f08721e6283d58164620a29c5.tar.gz serverdata-f425e4b2261b920f08721e6283d58164620a29c5.tar.bz2 serverdata-f425e4b2261b920f08721e6283d58164620a29c5.tar.xz serverdata-f425e4b2261b920f08721e6283d58164620a29c5.zip |
Add new monsters to mob point function.
Diffstat (limited to 'world/map/npc/functions')
-rw-r--r-- | world/map/npc/functions/mob_points.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/world/map/npc/functions/mob_points.txt b/world/map/npc/functions/mob_points.txt index 2f89010e..bcf2fc96 100644 --- a/world/map/npc/functions/mob_points.txt +++ b/world/map/npc/functions/mob_points.txt @@ -106,18 +106,19 @@ function|script|MobPoints|{ 80, // DemonicSpirit 940, // Luvia 150, // WitchGuard + 50, // DemonicMouboo + 15, // ViciousSquirrel + 20, // WickedMushroom // Add more here 0; // END - if (MPQUEST == 1) set Mobpt, Mobpt + @points[@mobID - 1002]; // Scorpion, Red Scorpion, Black Scorpion, Angry Scorpion - if ((@mobID == 1003) - || (@mobID == 1004) - || (@mobID == 1009) - || (@mobID == 1057)) +// DemonicMouboo, ViciousSquirrel, WickedMushroom + if ((@mobID == 1003) || (@mobID == 1004) || (@mobID == 1009) || (@mobID == 1057) + || (@mobID == 1104) || (@mobID == 1105) || (@mobID == 1106)) goto L_good; |