How to add flying mounts in azeroth! menu

User Tag List

Page 1 of 6 12345 ... LastLast
Results 1 to 15 of 81
  1. #1
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to add flying mounts in azeroth!

    EDIT: partial credits to me partial credits to arscon of ncdb.mmoforge.org (for solving the last part)

    Firstly, you need to download the ascent svn before doing any of this.
    ( http://mmoforge.org/svn/ascent/trunk username: anonymous no password)
    Then, go into (folder it's in)/src/game and Open Unit.cpp

    Find

    Code:
                // Can't use flying auras in non-outlands.
                if(aur->GetSpellProto()->EffectApplyAuraName[i] == 208 || aur->GetSpellProto()->EffectApplyAuraName[i] == 207)
                {
                    delete aur;
                    return;
                }
            }
        }
    About two lines above that it will have something like
    Code:
    
    {
        if(m_mapId != (some mapid is here))
        {
            for(uint32 i = 0; i < 3; ++i)
            {
    

    now change the if(m_mapId != part to

    Code:
    if(m_mapId != 580)
    Then in SpellAuras.cpp you will need to search for void Aura::SpellAuraEnableFlight(bool apply)

    Replace the else with if(!apply) which should look like this:

    Code:
    void Aura::SpellAuraEnableFlight(bool apply)
    {
    if(m_target->IsPlayer())
    {
       static_cast<Player*>(m_target)->FlyCheat = apply;
       static_cast<Player*>(m_target)->flying_aura = m_spellProto->Id;
    }
    
    if(apply)
    {
       m_target->EnableFlight(true);
       m_target->m_flyspeedModifier += mod->m_amount;
       m_target->UpdateSpeed(true);
    }
    if (!apply)  //replaced else with:  if(!apply)  to allow flying mounts in the old lands
    {
       m_target->DisableFlight(true);
       m_target->m_flyspeedModifier -= mod->m_amount;
       m_target->UpdateSpeed(true);
    }
    }



    Then comple ascent and you have flying mounts working! (if you did it right)

    I'm not going to post how to compile ascent but there is a guide around here for it.

    Have fun

    Another edit: you need to make new flying mounts for it to work, here is an example:

    Code:
    INSERT INTO `items`
    VALUES
    ('90002',' 4',' 0',' -1','Insignia of the Gryphon Rider','Insignia of the Gryphon Rider','Insignia of the Gryphon Rider','Insignia of the Gryphon Rider',' 31481',' 1',' 0',' 0',' 0',' 12',' -1',' -1',' 128',' 1',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 1',' 1',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 5',' 0',' 0',' 0',' 0',' 0',' 32292',' 1',' 0',' 0',' 0',' 0',' 13669',' 1',' 0',' 0',' 0',' 0',' 22564',' 0',' 0',' 0',' 1091',' 120000',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 1','0',' 0',' 0',' 0',' 0',' 0',' -1',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' -1',' 0','0');
    above code doesn't work. Updating.
    Make sure spell 1 ID is for flying mount, and its trigger is 1 for immediate.
    Also make sure it is a trinket, with flags of 4
    Last edited by Le Froid; 03-06-2008 at 04:17 PM.

    How to add flying mounts in azeroth!
  2. #2
    Illidan1's Avatar Banned
    Reputation
    244
    Join Date
    Jul 2007
    Posts
    2,251
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    Very, Nice Timmyvacc
    Great job +Rep When i can
    "Canit yet must wait 24 hours" -_-
    Last edited by Illidan1; 10-30-2007 at 02:18 PM.

  3. #3
    OwnOwned's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    Wow Man U Rock

  4. #4
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    Nice one, now if only my cores will work :P
    Life Puzzler WoW - Website | Forums

  5. #5
    kingofhacks's Avatar Member
    Reputation
    3
    Join Date
    Jun 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    Very nice
    +rep
    I click on mmowned ad's every day! Your welcome

  6. #6
    Perdyno's Avatar Member
    Reputation
    3
    Join Date
    Nov 2007
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    Wow this is great

  7. #7
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    gonna upload a compiled link..lost faith in herleybob for compiling stuff so i'll do it in a min

  8. #8
    sticksx's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    can you make it for stable rev2000?
    Thank's in advance!

  9. #9
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    Originally Posted by sticksx View Post
    can you make it for stable rev2000?
    Thank's in advance!
    download rev 2000 svn then do what i said

  10. #10
    sticksx's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    Originally Posted by Timmyvacc View Post
    download rev 2000 svn then do what i said
    I tryed it and complied it, it complied fine, but still I could not mount outside of outland's?

    Any other files that we have to change?

    Thank's in advance =)

  11. #11
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    Originally Posted by sticksx View Post
    I tryed it and complied it, it complied fine, but still I could not mount outside of outland's?

    Any other files that we have to change?

    Thank's in advance =)
    Thats odd...if that didnt work delete every line i put in the code boxes

  12. #12
    Summer's Avatar Active Member
    Reputation
    16
    Join Date
    Sep 2007
    Posts
    308
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    what is ascent svn ? xD

  13. #13
    emmstah's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    unfortunatly it's not gonna work. All it will do is remove the ability to use flying mounts in Outlands as well as Azeroth.

    The original piece of code effectively says if map isn't outlands, remove aura. now it says if map isn't a non existant map, remove aura.

    Try changing it to

    Code:
     if(m_mapId > 580)
    Once mounted, the flying aura will then no longer be removed in Azeroth.

    However, the problem of actually applying the flying aura (via mount or other means) still remains. Possibly a custom item to apply the properties would work, I'm not too sure yet.

  14. #14
    eSpN1337's Avatar Member
    Reputation
    1
    Join Date
    Jun 2007
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    How do i get in this svn?

  15. #15
    Le Froid's Avatar Contributor
    Reputation
    172
    Join Date
    Mar 2007
    Posts
    1,327
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to add flying mounts in azeroth!

    bump because i edited something to make it work

Page 1 of 6 12345 ... LastLast

Similar Threads

  1. [Guide] How to make Flying Mounts Usable in Azeroth
    By Pedregon in forum WoW EMU Guides & Tutorials
    Replies: 0
    Last Post: 05-11-2010, 12:56 AM
  2. How to make Custom Flying Mount in Azeroth
    By arandd in forum WoW EMU Questions & Requests
    Replies: 6
    Last Post: 10-07-2008, 04:42 PM
  3. How to make flying mounts in azeroth
    By xX EPIC Xx in forum WoW EMU Guides & Tutorials
    Replies: 20
    Last Post: 09-14-2008, 05:04 PM
  4. How to make Flying Mounts Work in Azeroth
    By r3anims in forum WoW EMU Guides & Tutorials
    Replies: 16
    Last Post: 09-04-2008, 04:11 AM
  5. [Guide] How to make Flying mounts for azeroth.
    By Swordfish999 in forum WoW EMU Guides & Tutorials
    Replies: 7
    Last Post: 01-16-2008, 09:26 PM
All times are GMT -5. The time now is 02:58 PM. 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