What's new

Over level 100 - Worldserver won't start

ogwatson

Trial Member
4
2014
0
If I go into the config and set the max level to 255 it won't let me start the worldserver. I really would like to make max level 255 as I'm planning to increase xp rate.

I hope you can help,
Thanks.
 

Zafire

https://zafirehd.deviantart.com
Admin
Designer
Senior User
245
2013
23
Location
Siberia
Hello, this might be caused by unavailable "experience" or "stat" information, from the database. Every level needs information on these two areas, if not even from somewhere else too, but i can't recall.

Go ahead and see if you can find these tables in the database, and add information accordingly. You could also give searching google a shot, because this has surely been done before.

Good luck! Regards,
Zafire
 

cliffsmits

Senior User
Superior Member
262
2014
33
Location
netherlands
You need to edit the core and set the max level from 80 to 255
#ifndef DBCENUMS_H
#define DBCENUMS_H

// 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
#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
#define MAX_LEVEL 255

// Server side limitation. Base at used code requirements.
// also see MAX_LEVEL and GT_MAX_LEVEL define
#define STRONG_MAX_LEVEL 255

And than recompile the core
 
Top