Thanks for this release![]()
This guide is not made by me !!!
Credits: matssa
Did you create your ArcEmu Server from scratch? If not, please go see the Tutorial of Vox.
So you created your server, changed the Max Level and you want to know how to edit the core so that the max skills goes up to 2000 or more...
First, please go to your SVN Checkout Folder/Trunk/src/
Now you should see some folders named arcemu-crashreport , arcemu-logonserver, arcemu-realmserver , arcemu-shared, arcemu-voicechat, arcemu-world etc...
The folder that we are interested in is the arcemu-world folder.
So finaly we are in SVN Checkout Folder/trunk/src/arcemu-world
Now there is a lot of C++ files so don't open them if you don't know how to edit them cause they are the bases of the server.
now in all those C++ Files, open the C++ file named Player.cpp
Now click Ctrl + F
Search for CODE-BOX
Curr_sk = ( Curr_sk > 450 ? 450 : ( Curr_sk <1 ? 1 : Curr_sk ) );
When you find it, you must have something like this:
CODE-BOX
#if PLAYER_LEVEL_CAP==80
Curr_sk = ( Curr_sk > 450 ? 450 : ( Curr_sk <1 ? 1 : Curr_sk ) );
Max_sk = ( Max_sk > 450 ? 450 : Max_sk );
#else
Curr_sk = ( Curr_sk > 375 ? 375 : ( Curr_sk <1 ? 1 : Curr_sk ) );
Max_sk = ( Max_sk > 375 ? 375 : Max_sk );
#endif
Now change everything so that you have something like this :
!!!NOTE!!! You must put your desireed max skill where i put #!!!!
CODE-BOX
+//#if PLAYER_LEVEL_CAP==80
Curr_sk = ( Curr_sk > # ? # : ( Curr_sk <1 ? 1 : Curr_sk ) );
Max_sk = ( Max_sk > # ? # : Max_sk );
#else
Curr_sk = ( Curr_sk > 375 ? 375 : ( Curr_sk <1 ? 1 : Curr_sk ) );
Max_sk = ( Max_sk > 375 ? 375 : Max_sk );
#endif
Then when you are done, save it but DON'T CLOSE IT!!(in case you have a shutdown or something...)
Then click Ctrl + F and search :
CODE-BOX
#if PLAYER_LEVEL_CAP==80
if (new_max > 450)
When you have found this, you must have something like this :
CODE-BOX
#if PLAYER_LEVEL_CAP==80
if (new_max > 450)
new_max = 450;
#else
if (new_max > 375)
new_max = 375;
#endif
So you have to change it so that it looks like this:
!!!NOTE!!! You must put your desireed max skill where i put #!!!!
CODE-BOX
#if PLAYER_LEVEL_CAP==80
if (new_max > #)
new_max = #;
#else
if (new_max > 375)
new_max = 375;
#endif
Save it but DON'T CLOSE IT!!!
Finally, in the same file, search for :
CODE-BOX
NewMax = ( NewMax > 450 ? 450 : NewMax );
When you find it, you must have something like this :
CODE-BOX
#if PLAYER_LEVEL_CAP==80
NewMax = ( NewMax > 450 ? 450 : NewMax );
#else
NewMax = ( NewMax > 375 ? 375 : NewMax );
#endif
Now you must change this so that it appears like this :
!!!NOTE!!! You must put your desireed max skill where i put #!!!!
CODE-BOX
#if PLAYER_LEVEL_CAP==80
NewMax = ( NewMax > # ? # : NewMax );
#else
NewMax = ( NewMax > 375 ? 375 : NewMax );
#endif
There you have finished editing the Core for the max skills!
!!!EDIT!!!: i added the patch file, but don't forget to do the same thing as in the guide so that you find where to change it... I putted 1275 for max skills
Thanks for this release![]()
I have used this guide before, works like a charm =]
What are SVN and were are this![]()
aa the downloade for patch is Fyling mouts not Skill
kenn you make for me
1500K =D wen i make it cam a "!" =(
Bookmarks