JadaDev
reaper-wow.comLegend
LEVEL 11
50 XP
This is For TrinityCore
Remember that you could instead change to lvl >= 256
MiscHandler.cpp -- Line 325
src\server\game\Handlers\MiscHandler.cpp
Simply Disable the Level Check
Old :
Remember that you could instead change to lvl >= 256
MiscHandler.cpp -- Line 325
src\server\game\Handlers\MiscHandler.cpp
Simply Disable the Level Check
Old :
Like so New :// check if target's level is in level range
uint8 lvl = target.GetLevel();
if (lvl < level_min || lvl > level_max)
continue;
// check if target's level is in level range
uint8 lvl = target.GetLevel();
/*if (lvl < level_min || lvl > level_max)
continue;*/
Last edited: