+ Reply to Thread
Results 1 to 5 of 5

Thread: How To Edit The Core For The Max Skills

  1. #1
    MMOpro Owner Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry's Avatar
    Join Date
    Mar 2009
    Location
    Serbia
    Posts
    1,304
    Blog Entries
    2
    Thanks
    19
    Thanked 33 Times in 27 Posts
    Rep Power
    10

    How To Edit The Core For The Max Skills

    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
    Attached Files

  2. #2
    MMOpro Smod Joan is on a distinguished road Joan's Avatar
    Join Date
    Feb 2010
    Location
    Holland
    Posts
    323
    Thanks
    3
    Thanked 7 Times in 6 Posts
    Rep Power
    1

    Thanks for this release

  3. #3
    MMOpro SMOD Grandelf will become famous soon enough Grandelf will become famous soon enough Grandelf's Avatar
    Join Date
    Nov 2009
    Posts
    117
    Thanks
    1
    Thanked 4 Times in 3 Posts
    Rep Power
    2

    I have used this guide before, works like a charm =]

  4. #4
    Leecher Fardex is on a distinguished road
    Join Date
    Feb 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    What are SVN and were are this

  5. #5
    Leecher Fardex is on a distinguished road
    Join Date
    Feb 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    aa the downloade for patch is Fyling mouts not Skill
    kenn you make for me
    1500K =D wen i make it cam a "!" =(

+ Reply to Thread

Similar Threads

  1. edit your website link in css!
    By luigi in forum Tutorials
    Replies: 10
    Last Post: 03-03-2010, 05:59 PM
  2. [Release] Weapon Skills on Start
    By Jerry in forum SQL Querys
    Replies: 3
    Last Post: 03-01-2010, 09:50 PM
  3. Replies: 3
    Last Post: 02-28-2010, 03:48 AM
  4. where to edit this?
    By VII in forum English Support
    Replies: 10
    Last Post: 12-29-2009, 07:49 PM
  5. Replies: 0
    Last Post: 06-26-2009, 08:56 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts