Jump to content

Cronicxx321

Members
  • Posts

    6
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by Cronicxx321

  1. nice ty, now whenever I put the compiled Mangosd.exe over my repacked one it says on creature_template

    
    2012-04-07 10:10:38 Loading Creature templates...
    2012-04-07 10:10:38 ERROR:Error in creature_template table, probably sql file format was updated (there should be 85 fields in sql).
    

    Im using http://www.ac-web.org/forums/showthread.php?t=140641 but i have a compiled MaNGOS core I compile the mangosd.exe and override the old one any help on that xD?

    whenever i load the old one it goes fine i can go into the server but when i do the above i cant

  2. edit void Player::UpdateDodgePercentage() to look like this:

    void Player::UpdateDodgePercentage()
    {
       // Dodge from agility
       float value = GetDodgeFromAgility();
       // Modify value from defense skill
       value += (int32(GetDefenseSkillValue()) - int32(GetMaxSkillValueForLevel())) * 0.04f;
       // Dodge from SPELL_AURA_MOD_DODGE_PERCENT aura
       value += GetTotalAuraModifier(SPELL_AURA_MOD_DODGE_PERCENT);
       // Dodge from rating
       value += GetRatingBonusValue(CR_DODGE);
       value = value < 0.0f ? 0.0f : value;
    
       if (value > 0.50f)
           value = 0.50f
    
       SetStatFloatValue(PLAYER_DODGE_PERCENTAGE, value);
    }
    

    edit this to fit your needs:

    if (value > 0.50f)

    value = 0.50f

    (0.50f = 50%)

    where did you find this at player.cpp doesnt have it

×
×
  • 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