[How To] edit arcemu core self complied core needed menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 42
  1. #1
    xX EPIC Xx's Avatar Active Member
    Reputation
    37
    Join Date
    Apr 2008
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [How To] edit arcemu core self complied core needed

    Hey all!

    Here are some edits on the arcemu core


    1.0 Change max skill
    1.1 Change max parry, dodge, crit etc rating
    1.2 Remove appear text when appearing to someone
    1.3 Remove summon text when summon someone
    1.4 Change max storage
    1.5 Make flying mounts in azzeroth (easy)
    1.6 Change text at console start up (World.exe)
    1.8 Change command names in-game
    2.0 Add two existing commands


    1.0 Change Max Skill

    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) open Player.cpp
    Step 3) press Ctrl + F and type
    Max_sk = ( Max_sk > 450 ? 450 : Max_sk );
    change it to Max_sk = ( Max_sk > 2000 ? 2000 : Max_sk ); //max skill is now set to 2000
    go down 3 rows and set it to 2000 ? 2000 too
    Now you're done.

    1.1 Change max parry, dodge, crit etc rating

    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) open Player.cpp
    Step 3) Press Crtl + F paste tmp = min( max ( tmp, 0.0f ), 95.0f );
    and change 95.0f); to 35.of)
    Step 3) Press Ctrl + F paste tmp = min( max( tmp, 0.0f ), 95.0f );
    do the same then search for tmp = min( max( tmp, 0.0f ), 95.0f );
    again and do the same
    Now you're done.

    1.2 Remove appear text when appearing to someone
    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) open Level1.cpp
    Step 3) Search for char buf0[256];
    snprintf((char*)buf0,256,
    and change the text between " " to anything you want or just remove it for not to show in-game
    and now you're done.

    1.3 Remove summon text when summon someone
    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) open Level1.cpp
    Step 3) Search for
    // send message to player
    snprintf((char*)buf0,256, "You are being summoned by %s."
    and change "You are being summoned by %s." to anything you want or just remove it for not to show in-game
    and now you're done.

    1.4 Change max storage
    Step 1) goto \Core Folder\trunk\src\arcemu-shared
    Step 2) open Storage.cpp
    Step 3) change #define STORAGE_ARRAY_MAX 200000
    to
    #define STORAGE_ARRAY_MAX 10000000
    and now you're done.

    1.5 Make flying mounts in azzeroth (easy)
    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) press Ctrl + F
    and type if(m_mapId!=530 && (m_mapId!=571
    Change it to if(m_mapId!=530 && (m_mapId!=571 && (m_mapId!=0 && (m_mapId!=1)
    gratz you're done.

    1.6 Change text at console start up (World.exe)
    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) open Master.cpp
    Step 3) Press Ctrl + F
    and type Log.Color(TBLUE);
    you can change the text between
    printf("This program is free software: you can redistribute it and/or modify\n");
    and
    printf("For all support, you should visit the repacker's website at %s\n", REPACK_WEBSITE);
    and now you're done

    1.8 Change command names in-game
    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) open Chat.cpp
    Step 3) press Ctrl + F and type
    static ChatCommand modifyCommandTable[] this will only change the modify commands.
    if you want to make add command shorter type
    static ChatCommand characterCommandTable[] =
    and change additem to maybe... a then the new command would be .cha a (itemid)
    done. :P

    2.0 Add two existing commands
    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) open Chat.cpp
    Step 3) Press Ctrl + F
    and type //{ "reloadscripts"
    remove the //
    then press Ctrl + F again and type
    //{ "delete",
    remove the //
    and you're done.

    Credits:
    100% of credits goes to me
    Last edited by xX EPIC Xx; 04-03-2009 at 06:09 AM. Reason: Fixed some missing letthers hehe XD
    https://Fileusher.com

    [How To] edit arcemu core self complied core needed
  2. #2
    Found's Avatar Banned
    Reputation
    239
    Join Date
    Mar 2009
    Posts
    642
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very Nice +Rep

  3. #3
    xX EPIC Xx's Avatar Active Member
    Reputation
    37
    Join Date
    Apr 2008
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks :P
    https://Fileusher.com

  4. #4
    y2kss66's Avatar Member
    Reputation
    104
    Join Date
    Jan 2008
    Posts
    778
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    now this is helpful!

    thanks for sharing! and finally a worthy guide not just a repost like most guides.

    +RepX2
    Last edited by y2kss66; 03-28-2009 at 10:20 AM.

  5. #5
    xX EPIC Xx's Avatar Active Member
    Reputation
    37
    Join Date
    Apr 2008
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hehe :P thanks
    https://Fileusher.com

  6. #6
    [Shon3m]'s Avatar Banned
    Reputation
    128
    Join Date
    Apr 2007
    Posts
    669
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    haha man nice work 2x +REP

  7. #7
    hingxxwing's Avatar Member
    Reputation
    3
    Join Date
    Jul 2008
    Posts
    97
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty. (mts)(mts)

  8. #8
    xX EPIC Xx's Avatar Active Member
    Reputation
    37
    Join Date
    Apr 2008
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hehe feeled for sharing my skills XD

    cmon more replys...!
    Last edited by 2dgreengiant; 04-19-2009 at 04:16 AM.
    https://Fileusher.com

  9. #9
    sasoritail's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2008
    Posts
    655
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you give me a link to another C++ Program than Visual C++. i cant download it for some reason but plz i really want my own core
    It's been a while

  10. #10
    xX EPIC Xx's Avatar Active Member
    Reputation
    37
    Join Date
    Apr 2008
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    all can download the one from Microsoft
    what's your error?
    https://Fileusher.com

  11. #11
    xX EPIC Xx's Avatar Active Member
    Reputation
    37
    Join Date
    Apr 2008
    Posts
    238
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    all can download the one from Microsoft
    what's your error?
    https://Fileusher.com

  12. #12
    Sounddead's Avatar Contributor
    Reputation
    160
    Join Date
    Sep 2007
    Posts
    1,126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Something half decent is finally contributed. And for that, +2 rep.

    Good job.

    I live in a shoe

  13. #13
    singoe's Avatar Active Member
    Reputation
    23
    Join Date
    May 2008
    Posts
    150
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    1.5 Make flying mounts in azzeroth (easy)
    Step 1) goto \Core Folder\trunk\src\arcemu-world
    Step 2) press Ctrl + F
    and type if(m_mapId!=530 && (m_mapId!=571
    Chane it to if(m_mapId!=530 && (m_mapId!=571 && (m_mapId!=0 && (m_mapId!=1
    gratz you're done.
    Um what file should we search for the text in?

  14. #14
    sasoritail's Avatar Contributor
    Reputation
    161
    Join Date
    Sep 2008
    Posts
    655
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xX EPIC Xx View Post
    all can download the one from Microsoft
    what's your error?
    Code:
    Not Found
    
    The requested URL /download/A/5/4/A54BADB6-9C3F-478D-8657-93B3FC9FE62D/vcsetup.exe was not found on this server.
    
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Here's The URL i tried downloading from:
    Visual C++ 2008 Express Edition
    It's been a while

  15. #15
    Sandile's Avatar Member
    Reputation
    32
    Join Date
    Aug 2008
    Posts
    314
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Link works for me
    And btw on the 2.0 step you add 2 commands.
    What does the commands do?
    "i downloaded it in "pirates bay", can you tell me how to download it in steam, pls"

Page 1 of 3 123 LastLast

Similar Threads

  1. Arcemu Core Edit
    By EmuX in forum WoW EMU Questions & Requests
    Replies: 8
    Last Post: 02-05-2010, 03:07 AM
  2. [Compile Custom ArcEmu Core] - Need Fast Help!
    By zxoxz in forum WoW EMU Questions & Requests
    Replies: 4
    Last Post: 05-13-2009, 01:17 AM
  3. Editing Ascent Core
    By xX EPIC Xx in forum WoW EMU Guides & Tutorials
    Replies: 6
    Last Post: 09-05-2008, 01:31 PM
  4. How can I change Cores?
    By cristi13 in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 05-31-2008, 02:46 PM
  5. [Help] How to modify the core! chat support UTF-8
    By nbhfam in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 05-28-2008, 01:05 PM
All times are GMT -5. The time now is 04:50 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search