Viters Ascent Compiles menu

Shout-Out

User Tag List

Page 2 of 7 FirstFirst 123456 ... LastLast
Results 16 to 30 of 98
  1. #16
    talabo's Avatar Member
    Reputation
    2
    Join Date
    Sep 2007
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Viters Ascent Compiles

    what ascent core am i suppose to take?

    Viters Ascent Compiles
  2. #17
    Viter's Avatar Elite User
    Reputation
    410
    Join Date
    Aug 2007
    Posts
    2,153
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Viters Ascent Compiles

    the newest one (trash)



  3. #18
    Viter's Avatar Elite User
    Reputation
    410
    Join Date
    Aug 2007
    Posts
    2,153
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)



  4. #19
    Viter's Avatar Elite User
    Reputation
    410
    Join Date
    Aug 2007
    Posts
    2,153
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)



  5. #20
    danis's Avatar Member
    Reputation
    5
    Join Date
    Jul 2007
    Posts
    274
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could u release them whit the script on azeroth whit flying in azeroth...? would be great

  6. #21
    Viter's Avatar Elite User
    Reputation
    410
    Join Date
    Aug 2007
    Posts
    2,153
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by danis View Post
    could u release them whit the script on azeroth whit flying in azeroth...? would be great
    If i knew how to do then yes
    and when/if im going to do it then it gonna be when ascent stable branch 2.5 is out
    Last edited by Viter; 12-07-2007 at 09:01 AM.



  7. #22
    danis's Avatar Member
    Reputation
    5
    Join Date
    Jul 2007
    Posts
    274
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    look here
    Code:
    You will have to modify the following files: Player.cpp, SpellAuras.cpp, MovementHandler.cpp & Unit.cpp
    
    In Player.cpp you will need to search and replace 3 items
    
    First search for:
    
    !=530
    and replace it with
    >580
    
    then search for:
    
    != 530
    (yes, just add a space) and replace it with
    > 580
    
    All 3 will look something like
    
    if(flying_aura && MapID > 580)
    
    
    In SpellAuras.cpp you will need to search for
    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 and replace:
    
    if(m_mapId != 530)
    with
    if(m_mapId > 580)
    
    Code:
    if(m_mapId != 530) //<<--- Change this
    {
    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 build it and once it is finished create an item that will cast the mount you desire on equip. The current items will not work with this change (they still work in the Outlands as normal) so you will have to create some new items for it to work.
    
    Such as:
    
    INSERT INTO items VALUES (90001, 4, 0, -1, "Charm of the Phonix", "Charm of the Phonix", "Charm of the Phonix", "Charm of the Phonix", 43430, 3, 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, 0, 0, 0, 0, 0, 0, 40192, 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, 1, "", 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 0);
    hope u will release !!! WAITING ! Good luck :P

  8. #23
    Viter's Avatar Elite User
    Reputation
    410
    Join Date
    Aug 2007
    Posts
    2,153
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    but listen if i do it you guys will have to add your own mounts before this works



  9. #24
    danis's Avatar Member
    Reputation
    5
    Join Date
    Jul 2007
    Posts
    274
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yea or u could make some of them dosent matter' ! some cool one's

  10. #25
    Viter's Avatar Elite User
    Reputation
    410
    Join Date
    Aug 2007
    Posts
    2,153
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by danis View Post
    Yea or u could make some of them dosent matter' ! some cool one's
    Im only compiling ascent



  11. #26
    danis's Avatar Member
    Reputation
    5
    Join Date
    Jul 2007
    Posts
    274
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well do that mount,is postet there whit the script... every time u compile so the fly mounts will work in azeroth ..

    PS: U just need to compile that script so this mount will work so all the ppl will use that mount could u make !? only the script for all revs u will make pls dude
    Last edited by danis; 12-07-2007 at 09:52 AM.

  12. #27
    Viter's Avatar Elite User
    Reputation
    410
    Join Date
    Aug 2007
    Posts
    2,153
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry ill wait to Ascent Stable Branch 2.5



  13. #28
    danis's Avatar Member
    Reputation
    5
    Join Date
    Jul 2007
    Posts
    274
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so in a word u will not make ... the rev whit flying in azeroth right..?

  14. #29
    Viter's Avatar Elite User
    Reputation
    410
    Join Date
    Aug 2007
    Posts
    2,153
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by danis View Post
    so in a word u will not make ... the rev whit flying in azeroth right..?
    i cant promise.
    But if i do it gonna be at ascent stable branch 2.5



  15. #30
    danis's Avatar Member
    Reputation
    5
    Join Date
    Jul 2007
    Posts
    274
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Uhoo Wish u will do it :P!! well thanks.. I`l wait for it good luck !cya soon

Page 2 of 7 FirstFirst 123456 ... LastLast

Similar Threads

  1. [2/24/08] Ascent Compiles and Extras
    By Gastricpenguin in forum World of Warcraft Emulator Servers
    Replies: 289
    Last Post: 03-22-2008, 02:23 PM
  2. Richmen6 Ascent Compiles
    By C.C. in forum World of Warcraft Emulator Servers
    Replies: 23
    Last Post: 02-26-2008, 04:26 PM
  3. [Help] Ascent compiling
    By kanqaz in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 01-16-2008, 09:55 AM
  4. KingofBeast's Ascent Compiles
    By The Kingofbeast in forum World of Warcraft Emulator Servers
    Replies: 136
    Last Post: 01-09-2008, 04:02 PM
  5. [HELP] Ascent Compiling Error.
    By jokerjokes in forum World of Warcraft Emulator Servers
    Replies: 23
    Last Post: 12-10-2007, 12:53 AM
All times are GMT -5. The time now is 11:12 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search