Welcome to the MMOtop - Arcemu, Mangos, Trinity.
+ Reply to Thread
Results 1 to 6 of 6
  1. #1
    Jerry's Avatar
    Status : Jerry is offline
    Join Date : Mar 2009
    Location : Serbia
    Posts : 2,321
    Thanks: 223
    Thanked 501 Times in 286 Posts
    Rep Power : 10
    Reputation:2077Jerry 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

    Default 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

  2. #2
    Joan's Avatar
    Status : Joan is offline
    Join Date : Feb 2010
    Location : Holland
    Posts : 348
    Thanks: 6
    Thanked 12 Times in 10 Posts
    Rep Power : 3
    Reputation:12Joan is on a distinguished road

    Default

    Thanks for this release

  3. #3
    Grandelf's Avatar
    Status : Grandelf is offline
    Join Date : Nov 2009
    Posts : 117
    Thanks: 1
    Thanked 23 Times in 13 Posts
    Rep Power : 4
    Reputation:153Grandelf has a spectacular aura about Grandelf has a spectacular aura about

    Default

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

  4. #4
    Status : Fardex is offline
    Join Date : Feb 2010
    Posts : 3
    Thanks: 0
    Thanked 0 Times in 0 Posts
    Rep Power : 0
    Reputation:10Fardex is on a distinguished road

    Default

    What are SVN and were are this

    //edit i found
    Last edited by Fardex; 06-27-2010 at 07:30 PM.

  5. #5
    Status : Fardex is offline
    Join Date : Feb 2010
    Posts : 3
    Thanks: 0
    Thanked 0 Times in 0 Posts
    Rep Power : 0
    Reputation:10Fardex is on a distinguished road

    Default

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

  6. #6
    Status : jaxon is offline
    Join Date : Jun 2010
    Posts : 34
    Thanks: 0
    Thanked 0 Times in 0 Posts
    Rep Power : 2
    Reputation:10jaxon is on a distinguished road

    Default

    Try it soon


 

Similar Threads

  1. [Release] Weapon Skills on Start
    By Jerry in forum SQL Querys
    Replies: 8
    Last Post: 01-13-2012, 12:36 AM
  2. Replies: 6
    Last Post: 08-24-2010, 10:51 PM
  3. edit your website link in css!
    By SephiZe in forum Website & Design Tutorials
    Replies: 10
    Last Post: 03-03-2010, 04:59 PM
  4. where to edit this?
    By VII in forum English Support
    Replies: 10
    Last Post: 12-29-2009, 06:49 PM
  5. Replies: 0
    Last Post: 06-26-2009, 07:56 AM

Visitors found this page by searching for:

arcemu change max level

trinity maxskill

wow trinity maxskill

wow arcemu 1275 skill levels

how to change wow weapons skills 1275

c trinity maxskill

trinity max skill

trinity max profession command

how to set profession skill to 450 command

arcemu max all skills

max all skills trinity server

arcemu change skill

1275 skill

arcemu maxskills

wow arcemu setskill

trinity core weapon skill

trinity core max profession

set skill 197 0 450

arcemu core max level

arcemu skills 1275

Arcemu Change skill level

wow how to edit trinity max level

max skills trinity server

arcemu ridingskill 3.5.5a

trinity how to start maxx skill

SEO Blog

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