summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <jesusalva@themanaworld.org>2020-03-15 21:21:42 -0300
committerJesusaves <cpntb1@ymail.com>2020-03-24 12:51:12 -0300
commit93e74754a15898229d29f5431a676e0ebc1818e0 (patch)
tree232f615e7749692d82f3dac5b9c171f1bc5f7f31
parent103c5c9b9544cf614cac7e91fefe4d3dd1a0e644 (diff)
downloadserverdata-93e74754a15898229d29f5431a676e0ebc1818e0.tar.gz
serverdata-93e74754a15898229d29f5431a676e0ebc1818e0.tar.bz2
serverdata-93e74754a15898229d29f5431a676e0ebc1818e0.tar.xz
serverdata-93e74754a15898229d29f5431a676e0ebc1818e0.zip
Second monster point table
So newer monsters still work. Filled with random values, tbh.
-rw-r--r--world/map/npc/functions/mob_points.txt17
1 files changed, 16 insertions, 1 deletions
diff --git a/world/map/npc/functions/mob_points.txt b/world/map/npc/functions/mob_points.txt
index 72b5ac23..e60b0588 100644
--- a/world/map/npc/functions/mob_points.txt
+++ b/world/map/npc/functions/mob_points.txt
@@ -135,9 +135,24 @@ function|script|MobPoints
// -o11c
; // END
- if (MPQUEST == 1)
+ setarray @points_extended,
+ 100, // 1130 Moonshroom
+ 20, // 1131 ManaBug
+ 80, // 1132 LavaSlime
+ 80, // 1133 Anne
+ 200, // 1134 SUSAN
+ 80, // 1135 LovelyMaggot
+ 10, // 1136 LesserGhost
+ 500, // 1137 Tormenta
+ 200 // 1138 ManaGuardian
+ ;
+
+ if ((MPQUEST == 1) && (@mobID < 1130))
set Mobpt, Mobpt + @points[@mobID - 1002];
+ if ((MPQUEST == 1) && (@mobID > 1129))
+ set Mobpt, Mobpt + @points_extended[@mobID - 1130];
+
callfunc "ValonCount";
if (((QL_VALON >= 2) && (QL_VALON < 6)) && (@mobID == $@ValonMob[@valon_mob]))
goto L_ValonMobKill;