Jump to content

BaseData

Members
  • Posts

    5
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by BaseData

  1. Hey guys,

    i know there are programs on the git repo, but these are difficult to understand.

    I want to read out several dbcs for a small db editor, but i need help.

    At best you have a commented C# tut. If needed, I would take a C++ tut, but please comment the shit :D

  2. I wrote a crappy help fix to prevent a crash.

    Apply the following changes to player.cpp

    Search

       // spell not set in talent.dbc
       uint32 spellid = talentInfo->RankID[talentRank];
       if( spellid == 0 )
       {
           sLog.outError("Talent.dbc have for talent: %u Rank: %u spell id = 0", talentId, talentRank);
           return;
       }
    

    Add these lines

       if( spellid == 47536 || talentId == 47536 )
       {
           //http://www.wowhead.com/?spell=47536 -  Rapture    Rank 2 
           learnSpell(47537, false);    //Learn Rank 3
           return;
       }
    

    This will automatically learn Rapture Rank 3 instead of rank 2. This might be a bit unfair but it doesn't crash the server.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use