-
Activity
-
1
-
9
-
9
-
9
-
9
-
-
5
boss victim calculation problem
GameLib/ActorInstanceBattle.cpp: 1. #include "../UserInterface/PythonNonPlayer.h" at the top under the other includes. 2. Look for: Below add: This will fix the problem with bosses, which are using skills. If you're talking about player sync delay this is the only solution: -
2
Unwear/swap weapon/armor with costume on [c++]
hello, is there a solution for that? -
5
boss victim calculation problem
This is a normal bug on all servers. I fixed it some time ago but I don't remember how honestly All I know it's from binary source: [Hidden Content]
-
-
Recently Browsing
- No registered users viewing this page.
Question
Rommel 1
Where do i find in the source the level difference check of the drop?
I mean the "+-15" levels
https://imerr.github.io/m2dropcalc/
Link to comment
Share on other sites
Top Posters For This Question
3
1
1
Popular Days
Nov 27
3
Nov 30
2
Top Posters For This Question
Rommel 3 posts
nazox 1 post
VegaS™ 1 post
Popular Days
Nov 27 2020
3 posts
Nov 30 2020
2 posts
Popular Posts
VegaS™
Here're the references to understand how it's working step-by-step: char.cpp Hidden Content Give reaction to this post to see the hidden content. constants.cpp #define MAX_EXP_DELTA_OF_LEV 31 #define PERCENT_LVDELTA(me, victim) aiPercentByDeltaLev[MINMAX(0, (victim + 15) - me, MAX_EXP_DELTA_OF_LEV - 1)] #define PERCENT_LVDELTA_BOSS(me, victim) aiPercentByDeltaLevForBoss[MINMAX(0, (vict
4 answers to this question
Recommended Posts