Flying in Eastern Kingdoms and Kalimdor

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • Flying in Eastern Kingdoms and Kalimdor

      So now you are in SVN Checkout Folder/src/world

      There is a lot of C++ Files. Open the file named Unit.cpp

      now inside the C++ file, search for :

      CODE-BOX
      if(m_mapId!=530

      You should find something like this:

      CODE-BOX

      Source Code

      1. if(m_mapId!=530 && (m_mapId!=571 || (IsPlayer() && !((Player*)this)->HasSpellwithNameHash(SPELL_HASH_COLD_WEATHER_FLYING))))


      Now you must edit this line for the use of flying mounts.

      So to use the flying mounts everywhere, change it to this:

      CODE-BOX

      Source Code

      1. if(m_mapId!=530 && m_mapId != 0 && m_mapId != 1 && (m_mapId!=571 || (IsPlayer() && !((Player*)this)->HasSpellwithNameHash(SPELL_HASH_COLD_WEATHER_FLYING))))


      !!!NOTE!!! : Northrend still requires Cold Weathers if you want flying in a non Eastern Kingdoms or Kalimdor Map simply change 0 and 1 to the Map ID's you wish in maps.dbc

      I know this is a very simple one.