So, I tried this, and the results failed:Find the mob you want to modify from the sql/mob_pools.sql table.
With the poolid find the mob in sql/mob_groups.sql.
Get the dropid then find the table in sql/mob_droplist.sql.
Find mob "leaping_lizzy" in sql/mob_pools.sql -> poolID = 2384
Code: Select all
INSERT INTO `mob_pools` VALUES (2384,'Leaping_Lizzy',174,0x0000480100000000000000000000000000000000,1,1,7,240,100,0,0,0,1,2,0,0,0,3,0,0,0,1,0,174);
Code: Select all
INSERT INTO `mob_groups` VALUES (2591,2384,77,0,128,2035,0,0,75,80,0);
Example: INSERT INTO `mob_droplist` VALUES (2035,0,18592,20);
Itemid 18592 =
So, I checked on irc, and got this reply:Elder Staff]
[Main] All Races
DPS: 821 DMG:55 Delay:402
LV 75 SCH
check mob_spawn_points -> mob_groups.sql -> mob_droplist.sql
For this, I get these results:
Find groupid in mob_spawn_points.sql -> groupid = 5947
Code: Select all
INSERT INTO `mob_spawn_points` VALUES (17215868,'Leaping_Lizzy','Leaping Lizzy',5947,-283.760,21.444,-412.182,127);
Code: Select all
INSERT INTO `mob_groups` VALUES (5947,2384,107,18000,128,2036,0,0,10,11,0);
Example: INSERT INTO `mob_droplist` VALUES (2036,0,15351,70);
Itemid 15351 =
I think the wiki may need the information updated, since it seems to not work correctly when I try finding dropids using the documentation...Bounding Boots
[Feet] All Races
DEF:3 DEX+3 AGI+3
LV 7 WAR RDM THF PLD DRK BST BRD RNG SAM NIN DRG BLU COR DNC RUN
Unless there is some other reason why this is right in one instance, wrong in another