MMOCoin

Likes Likes:  0
Results 1 to 6 of 6
  1. #1
    Scout
    Snowcrown's Avatar
    Join Date
    Jan 2010
    Posts
    19
    Post Thanks / Like
    Rep Power
    17
    Reputation
    47

    Arrow 255 weapon skill

    Hey i'll learn u all to change max weapon skill
    ARCEMU ONE!!!
    First open player.h

    and search for:
    Code:
    #define PLAYER_LEVEL_CAP_70     80
    #define PLAYER_LEVEL_CAP                80
    #define PLAYER_ARENA_MIN_LEVEL  70
    Replace with
    Code:
    #define PLAYER_LEVEL_CAP_70     255
    #define PLAYER_LEVEL_CAP                255
    #define PLAYER_ARENA_MIN_LEVEL  70
    Then save and close...

    Open player.cpp
    Find:
    Code:
    #if PLAYER_LEVEL_CAP==255
        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
    Replace with:
    Code:
    #if PLAYER_LEVEL_CAP==255
        Curr_sk = ( Curr_sk > 1275 ? 1275 : ( Curr_sk <1 ? 1 : Curr_sk ) );
        Max_sk = ( Max_sk > 1275 ? 1275 : Max_sk );
    #else
        Curr_sk = ( Curr_sk > 375 ? 375 : ( Curr_sk <1 ? 1 : Curr_sk ) );
        Max_sk = ( Max_sk > 375 ? 375 : Max_sk );
    #endif
    Search for:
    Code:
    #if PLAYER_LEVEL_CAP==80
            if (new_max > 450)
                new_max = 450;
    #else
            if (new_max > 375)
                new_max = 375;
    #endif
            if (new_max < 1)
                new_max = 1;
    Replace with:
    Code:
    #if PLAYER_LEVEL_CAP==255
            if (new_max > 1275)
                new_max = 1275;
    #else
            if (new_max > 375)
                new_max = 375;
    #endif
            if (new_max < 1)
                new_max = 1;
    Save and start complie

    Enjoy


    › See More: 255 weapon skill

  2. #2
    Beginner

    Join Date
    Jan 2010
    Posts
    1
    Post Thanks / Like
    Rep Power
    17
    Reputation
    1

    255

    Were exactly is player.h????

  3. #3
    Scout
    Snowcrown's Avatar
    Join Date
    Jan 2010
    Posts
    19
    Post Thanks / Like
    Rep Power
    17
    Reputation
    47
    Arcemu/Trunk/SRC/Arcemu-world/player.h
    Arcemu/Trunk/SRC/Arcemu-world/player.cpp

  4. #4
    Contributor
    StickyIcky's Avatar
    Join Date
    Jul 2008
    Location
    127.0.0.1
    Posts
    747
    Post Thanks / Like
    Rep Power
    20
    Reputation
    188
    Quote Originally Posted by Snowcrown View Post
    Arcemu/Trunk/SRC/Arcemu-world/player.h
    Arcemu/Trunk/SRC/Arcemu-world/player.cpp
    You must compile your own core, not use a repack Colton55.

    I'm 99% sure your using a repack lol.

  5. #5
    Banned

    Join Date
    Sep 2009
    Location
    In My Computer
    Posts
    76
    Post Thanks / Like
    Rep Power
    0
    Reputation
    52
    very nice guide

  6. #6
    Sergeant
    Dr. Fallen's Avatar
    Join Date
    Mar 2010
    Location
    Turkey
    Posts
    74
    Post Thanks / Like
    Rep Power
    16
    Reputation
    64

    Register to remove this ad
    simple but effective thx for sharin







  7. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

 

 

Posting Permissions

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