MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides - Powered by vBulletin


Donate to remove ads, get special forum and shoutbawx access
+ Reply to Thread
Results 1 to 3 of 3
  1. #1

    Master Sergeant
    Join Date: Jul 2008
    Posts: 101
    Rep: 56
    Cash: 600

    [Tut - Pictures]: How to Compile C++ Scripts following your ExtraScripts Folder.

    Donate to remove ads, get special forum and shoutbawx access
    Hello all! I am going to show you how to compile a Cpp script like a gossip, pvp scripts or etc... that goes with your Extra Scripts Folder.


    First thing we do is download our SVN Source:


    Arcemu SVN

    Then we will go to:

    Programs Needed:
    Tortoise SVN

    Visual C++ Express Edition 2008

    Code:
    trunk > src > scripts > src > ExtraScripts
    Now you will need to put your .cpp script in the "ExtraScripts" folder, now we will go back until you see the "ExtraScripts2008" located in your "scripts" folder.

    Double click it and click the + signs and everything should be open and now right click the "Scripts" folder while you're in the "ExtraScripts2008" Visual C++ and go to "Add" > "Existing Item" Like SO:






    Now search your Folder that you download the SVN with and go to your ExtraScripts folder and ADD The script to the Visual C++, like so:






    Now double click the script while it is in your Visual C++ and look down until you see the

    Code:
    SetupYOURSCRIPTNAME(ScriptMgr * mgr)


    Copy SetupYOURSCRIPTNAME and go to your setup.cpp in the "Main Resources" folder, you should see it in the pictures above and put this where mine is:

    Code:
    SetupYOURSCRIPTNAME(mgr);
    Picture:





    Now copy this in your script:

    Code:
    void SetupYOURSCRIPTNAME(ScriptMgr * mgr)

    Now paste it in the "Setup.h" as this:

    Code:
    void SetupRepop(ScriptMgr * mgr);

    Picture:



    Now go all the way back to the start of that folder go to:

    trunk > win > Double Click VC90 - All Projects and do the following:

    Change it to "Release" instead of Debug and click build:





    Now you're done! Thanks for reading.

  2. #2

    Knight

    Join Date: Feb 2007
    Posts: 196
    Rep: 50
    Cash: 600
    Awsome thanks!!

  3. #3

    Master Sergeant
    Join Date: Jul 2008
    Posts: 101
    Rep: 56
    Cash: 600
    thanks, glad you like it

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
Go to the top of the page

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56