Level 80 to 255

Level 80 to 255 2023-06-05

Increase the maximum level range from 80 to 255

JadaDev

reaper-wow.com
Legend
JadaDev Rep
5
0
0
Rep
5
JadaDev Vouches
0
0
0
Vouches
0
Posts
514
Likes
530
Bits
3 YEARS
3 YEARS OF SERVICE
LEVEL 11 50 XP
JadaDev submitted a new resource:

Level 80 to 255 - Increase the maximum level range from 80 to 255

Level 80 to 255 Installation Guide​


This Thread provides instructions for installing the Level 80 to 255 script, which allows players to increase the maximum level range from 80 to 255 on your World of Warcraft server. Please note that this installation process involves modifying your database and requires caution. Follow the steps below to install the script successfully:


Prerequisites​


  • A compatible World of Warcraft server setup...

Read more about this resource...

C++ Edits :

Open DBCenums.h which could be found in : src\server\shared\DataStores\DBCenums.h

Then Edit :



C++:

#pragma pack(pop)
enum LevelLimit : uint8
{
// 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 = 255,

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

// Server side limitation. Base at used code requirements.
// also see MAX_LEVEL and GT_MAX_LEVEL define
STRONG_MAX_LEVEL = 255,
};



to be 255 as shows there.

Make sure to edit worldserver.conf Maxlevel to 255 too.
 
Last edited:

Alischia

New member
Alischia Rep
0
0
0
Rep
0
Alischia Vouches
0
0
0
Vouches
0
Posts
4
Likes
0
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 1 105 XP
Hello, I'm sorry, I have a question. I have done everything that is written in the instructions. The server boots up without any problems, but from level 100 onwards there is no longer any XP for my characters. Do you know why? Player Max level is 120 in the worldconfig
 

treetree

Well-known member
Legend
treetree Rep
0
0
0
Rep
0
treetree Vouches
0
0
0
Vouches
0
Posts
101
Likes
205
Bits
3 YEARS
3 YEARS OF SERVICE
LEVEL 4 165 XP
is all the stats.sql's and a advanced stat
system with core edits and tuts. :)
 
Last edited:

JadaDev

reaper-wow.com
Legend
JadaDev Rep
5
0
0
Rep
5
JadaDev Vouches
0
0
0
Vouches
0
Posts
514
Likes
530
Bits
3 YEARS
3 YEARS OF SERVICE
LEVEL 11 50 XP
Hello, I'm sorry, I have a question. I have done everything that is written in the instructions. The server boots up without any problems, but from level 100 onwards there is no longer any XP for my characters. Do you know why? Player Max level is 120 in the worldconfig
This is the fully SQL Side, you need to do the Core Edits to allow XP to go further Easy instruction is :

Open DBCenums.h which could be found in : src\server\shared\DataStores\DBCenums.h

Then Edit :

C++:
#pragma pack(pop)
enum LevelLimit : uint8
{
    // 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 = 255,

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

    // Server side limitation. Base at used code requirements.
    // also see MAX_LEVEL and GT_MAX_LEVEL define
    STRONG_MAX_LEVEL = 255,
};


to be 255 as shows there.
Make sure to edit worldserver.conf Maxlevel to 255 too.
 

JadaDev

reaper-wow.com
Legend
JadaDev Rep
5
0
0
Rep
5
JadaDev Vouches
0
0
0
Vouches
0
Posts
514
Likes
530
Bits
3 YEARS
3 YEARS OF SERVICE
LEVEL 11 50 XP

treetree

Well-known member
Legend
treetree Rep
0
0
0
Rep
0
treetree Vouches
0
0
0
Vouches
0
Posts
101
Likes
205
Bits
3 YEARS
3 YEARS OF SERVICE
LEVEL 4 165 XP
I wouldn't really suggest that, since that's a very old SQL also this does the trick professionally and got all the needed changes in order for everything to work properly, this won't give you a single Error after it's been done properly.
ok thank you jada i agree yes your sql works because i have used this mod a lot. :)
 
Liked By 1 member :

JadaDev

reaper-wow.com
Legend
JadaDev Rep
5
0
0
Rep
5
JadaDev Vouches
0
0
0
Vouches
0
Posts
514
Likes
530
Bits
3 YEARS
3 YEARS OF SERVICE
LEVEL 11 50 XP
Liked By 1 member :

3,570

1,285

9,619

433

Top