[acent] Flying mounts in azeroth

Page 1 of 3 123 LastLast
Results 1 to 15 of 33
  1. #1
    Apprentice HungryMan is offline
    MemberRank
    Jul 2007 Join Date
    16Posts

    [acent] Flying mounts in azeroth

    is there any way to edit the database so u can use flying mounts in azeroth?


  2. #2
    Account Upgraded | Title Enabled! jab416171 is offline
    MemberRank
    Sep 2007 Join Date
    377Posts

    Re: [acent] Flying mounts in azeroth

    .cheat fly

  3. #3
    Member blade.tri is offline
    MemberRank
    Mar 2007 Join Date
    96Posts

    Re: [acent] Flying mounts in azeroth

    Probably you need to recompile the ascent.exe to allow the flying mounts in Azeroth...Or well i don't know if it works but maby some nice guy could test to make a new flying mounts spell and make a custom flying mount to use in Azeroth...

  4. #4
    Apprentice HungryMan is offline
    MemberRank
    Jul 2007 Join Date
    16Posts

    Re: [acent] Flying mounts in azeroth

    lol jab
    and blade i was thinking you could edit the database and make it so the server thinks its a regular mount while you could still fly

  5. #5
    Account Upgraded | Title Enabled! jab416171 is offline
    MemberRank
    Sep 2007 Join Date
    377Posts

    Re: [acent] Flying mounts in azeroth

    come on .cheat fly is the solution to all your problems

  6. #6
    Apprentice HungryMan is offline
    MemberRank
    Jul 2007 Join Date
    16Posts

    Re: [acent] Flying mounts in azeroth

    ya but not for non gm's

  7. #7
    Member blade.tri is offline
    MemberRank
    Mar 2007 Join Date
    96Posts

    Re: [acent] Flying mounts in azeroth

    Quote Originally Posted by HungryMan View Post
    lol jab
    and blade i was thinking you could edit the database and make it so the server thinks its a regular mount while you could still fly
    Hmmmm... I don't think that's even possible. But what do i know :poster_do
    If it's possible... What part should be edited?:Jumpy:

  8. #8
    Enthusiast drunk3nrabbit is offline
    MemberRank
    Nov 2007 Join Date
    44Posts

    Re: [acent] Flying mounts in azeroth

    yes its possible, look for your self

    its a great private server secret that we don't want everyone having.

    and YES, you can find it.

  9. #9
    The one and only grandmst20 is offline
    MemberRank
    Feb 2007 Join Date
    427Posts

    Re: [acent] Flying mounts in azeroth

    It's through C++, not SQL. You have to edit stuff when you compile. You can find out how to on Emupedia and maybe Ascentemu.

  10. #10
    Account Upgraded | Title Enabled! emerged is offline
    MemberRank
    Apr 2007 Join Date
    AustraliaLocation
    257Posts

    Re: [acent] Flying mounts in azeroth

    i think i did see a solution to this on ascentemu forums but cant find the topic so a lil searching will get you far

    -Emerged

  11. #11
    Account Upgraded | Title Enabled! jab416171 is offline
    MemberRank
    Sep 2007 Join Date
    377Posts

    Re: [acent] Flying mounts in azeroth

    Try the compiling guide in my signature?

  12. #12
    Member blade.tri is offline
    MemberRank
    Mar 2007 Join Date
    96Posts

    Re: [acent] Flying mounts in azeroth

    I found a post by a guy called sinister

    Quote Originally Posted by Sinister~ View Post
    Actually... we do have working flying mounts able to fly in azeroth. We have not added it in, since we plan to make custom flying mounts just for this... Anywho, here's where to start ^^. I consider this nothing more than basic knowledge, that I'm happy to share.

    ~~

    Mounts aura in Azeroth

    Change
    if(m_mapId != 530)
    to
    if(m_mapId > 580)

    in Unit.cpp (about 130 lines down)

    You do NOT edit this entire code, only the "if(m_mapId != 530)" part.

    Hint: you can now use flying mounts in azeroth by using "debug"
    I've tried this one before but i can't compile it right, just getting like 100 errors :/

  13. #13
    Account Upgraded | Title Enabled! poemihai is offline
    MemberRank
    May 2007 Join Date
    RomaniaLocation
    247Posts

    Re: [acent] Flying mounts in azeroth

    try the tutorial from here Emupedia

  14. #14
    Enthusiast Voltex is offline
    MemberRank
    Sep 2007 Join Date
    CroatiaLocation
    42Posts

    Re: [acent] Flying mounts in azeroth

    u need to change the core files:P if u know c++ here is a guid for you

    Firstly, you need to download the ascent svn before doing any of this.
    Then, go into (folder it's in)/src/game and Open Unit.cpp

    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);
    }
    }
    Now for the last. In Unit.cpp find void Unit::AddAura(Aura *aur) and comment out the following:

    Code:
    //if(m_mapId != 530) 
    //{
    //for(uint32 i = 0; i < -1; ++i)
    //{
    // Can't use flying auras in non-outlands.
    //if(aur->GetSpellProto()->EffectApplyAuraName[i] == 208 || aur->GetSpellProto()->EffectApplyAuraName[i] == 207)
    //{
    //delete aur;
    //return;
    //}
    //}
    //}
    Now 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',' -1',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' 0',' -1',' 0');
    from emupedia.com

  15. #15
    You don't know me. Paco44 is offline
    MemberRank
    Apr 2006 Join Date
    IllinoisLocation
    1,777Posts

    Re: [acent] Flying mounts in azeroth

    Warning: Azeroth flying mounts lag your server.



Page 1 of 3 123 LastLast

Advertisement