• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

TrinityCore 3.3.5 Tutorial: Trinity How to fix Whos list

Minodevs

Emulation Addict
Hello Guys today i will be show how to fix a 255 level, show lists, - who lists ingame, That is are showing a maximum 1-100 i could to do fix it for a avaible to show 255 levels,

Frist Go to in source follow the steps,

1, go to in source: C:\Users\Minodev\Desktop\Minodevs Trinitycore\src\server\game\Handlers
2. Tag MiscHandler.cpp
3. Go to line, 271 u shold to found that like that code
4. Edit wtih Notepad++
5.

Code:
Code:
uint8 lvl = itr->second->getLevel();
        if (lvl < level_min || lvl > level_max)
            continue;
-------------------------------------------
follow the step 6. And re compile it wtih cmake
------------------------------------------
Code:
Code:
 
uint8 lvl = itr->second->getLevel();
        if (lvl < level_min)
            continue;

Change it like that, Next Recompile it wtih Cmake, After that Recompile source wtih visual studio do no forgot to cleaning sultion and your will be done,
Sorry a bad english i`am glad to help you guys
 
Last edited:

Kaev

Super Moderator
It's actually a bit hacky. You should set level_max higher instead of removing this check.
 
Top