Viters Ascent Compiles menu

Shout-Out

User Tag List

Page 3 of 7 FirstFirst 1234567 LastLast
Results 31 to 45 of 98
  1. #31
    Gila's Avatar Active Member
    Reputation
    60
    Join Date
    Feb 2007
    Posts
    254
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome post m8 !

    Viters Ascent Compiles
  2. #32
    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)
    Is the database's you posted blizzlik? or fun server?

  3. #33
    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)
    Is the database's you posted blizzlik? or fun server?


    edit: Sry Dobbel Post!

  4. #34
    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)
    ACDB= Fun server
    NCDB= Blizz server



  5. #35
    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)
    K thnx Your the best

  6. #36
    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)
    hey got a lil problem lol xD when i create a char is naked wtf' and when i start playing no items no cloth's no heartstone wtf? how i add them again?...

  7. #37
    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)
    i think its the database



  8. #38
    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)
    man could u compile this rev whit the fly thing ?2479 or 2482...till u will make for the stable one pls could u?

  9. #39
    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)
    Okay im doing it right now

    EDIT:
    im keep getting
    ========== Build: 4 succeeded, 2 failed, 0 up-to-date, 1 skipped ==========
    Last edited by Viter; 12-09-2007 at 06:00 AM.



  10. #40
    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 mean it could not work?:-SS and thanks aloot for doing this

  11. #41
    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)
    Yup i cant get it work.



  12. #42
    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)
    Nooo ((( could u try one more time god damn ( look at that "tutorial" should work fine ...

  13. #43
    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)
    I did.
    i just tryed again with no luck



  14. #44
    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
    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);
    maybe u lost it or mistake it ((

  15. #45
    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)
    i tryed but i keep getting errors



Page 3 of 7 FirstFirst 1234567 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 05:49 AM. 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