TrinityCore Level 1000 Cap ?

01/27/2015 02:44 Serphentos#1
How can i change the Level Cap to 1000 ? I mean Hardcoded include DBC Editing !
01/27/2015 13:11 YaGa21#2
would be useful to know what version and rev you are talking about
01/27/2015 13:59 Kaev <3#3
As far as i know you can't get above level 255 with core and dbc edits only, because the type of the level in the client is uint8_t.
01/27/2015 16:41 Serphentos#4
It is possible, but i hear you have to modify core and client files ... i speak about trinity core ...

PHP Code:
enum LevelLimit
{
    
// Client expected level limitation, like as used in DBC item max levels for "until max player level"
    // use as default max player level, must be fit max level for used client
    // also see MAX_LEVEL and STRONG_MAX_LEVEL define
    
DEFAULT_MAX_LEVEL 80,

    
// client supported max level for player/pets/etc. Avoid overflow or client stability affected.
    // also see GT_MAX_LEVEL define
    
MAX_LEVEL 1000,

    
// Server side limitation. Base at used code requirements.
    // also see MAX_LEVEL and GT_MAX_LEVEL define
    
STRONG_MAX_LEVEL 1000,
}; 
01/28/2015 18:41 Serphentos#5
Push !