Reduce mob levels to 75 cap era range #6672
-
I'm trying to get the high level mobs (80-99) back to the 75 cap era levels. I've tried moving over the sql in ASB labeled Era_Mob_Groups.sql to LSB, it seems to be exactly what I'm looking for. However the game gets stuck in "downloading data" in every way that I have tried. Is there a better way to achieve / how can I do it |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
There is a setting in the main.lua file in the settings folder. Make sure to change the lower range and the upper range. I.e 78-80 etc. Also read that whole file and the map.lua file in the same folder. You'd be surprised what you find. |
Beta Was this translation helpful? Give feedback.
-
Just as a note: ASB is not associated with LSB. The era_mob_groups sql on ASB will NOT work with LSB at this current time. There is a core piece missing in that sql that LSB does not have yet (content tags). |
Beta Was this translation helpful? Give feedback.
-
To lower a mobs level you would have adjust the |
Beta Was this translation helpful? Give feedback.
To lower a mobs level you would have adjust the
mob_groups.sql
for the level you want. I would advise not using ASB with LSB as a lot is different. They changed stuff to match their needs. You can build a module to run something likeUPDATE `mob_groups` SET minLevel=1,maxLevel=1 WHERE `groupid` =1 AND `zoneid`=1 AND `name`='MOBNAME';
and manually adjust the zones you want.