Jump to content

Sephiroth1983

Members
  • Posts

    200
  • Joined

  • Last visited

  • Donations

    0.00 GBP 

Posts posted by Sephiroth1983

  1. The ones with "Needs core implementation first" should be added IMHO, the data in tables should be correctly provided, regardless if the spell is fixed or not.

    Also, a friend of mine suggests to use '-1' as coefficient for Conflagrate (17962), Vampiric Touch Dispel proc (64085), Seal of Martyr self and enemy procs (53718, 53719), Seal of Blood (31893, 32221) and Swiftmend (18562). This is to avoid them to get ANY bonus damage.

    If you need the queries I can provide them after we discuss if is correct.

  2. Could it possibly fix that annoying "walking while staying" visual bug that happens when a lot of players gather in one place?

    That one happens when arena ends and is just visual for the ones who see it, the player is not even laging, it must be some wrong packet received by client, or a missing one.

  3. Hi Vlad, a friend of mine finds the DBC values wrong, sometimes

    for example for Twisted Faith - it affects only Mind Blast with DBC data and not Mind Flay

    he fixed it by overwriting (forcing) table values in spell_affect.

    This is the data:

    insert into `spell_affect` (`entry`, `effectId`, `SpellClassMask0`, `SpellClassMask1`, `SpellClassMask2`) values('51167','1','8396800','0','0');
    insert into `spell_affect` (`entry`, `effectId`, `SpellClassMask0`, `SpellClassMask1`, `SpellClassMask2`) values('51166','1','8396800','0','0');
    insert into `spell_affect` (`entry`, `effectId`, `SpellClassMask0`, `SpellClassMask1`, `SpellClassMask2`) values('47578','1','8396800','0','0');
    insert into `spell_affect` (`entry`, `effectId`, `SpellClassMask0`, `SpellClassMask1`, `SpellClassMask2`) values('47573','1','8396800','0','0');
    insert into `spell_affect` (`entry`, `effectId`, `SpellClassMask0`, `SpellClassMask1`, `SpellClassMask2`) values('47577','1','8396800','0','0');

    What do you think, it is correct?

  4. ll gear now has a stat called "spell power"

    there is no talent that gives healers more +healing from spellpower or anything like that.

    Blizzard has severely increased the coefficients from Healing spells in WotLK.

    Currently the reported modifier when spell power gets run through a healing spell is 1.8

    Currently in Mangos, the healing spell doesn't have this multiplier.

    Maybe i'm wrong but

    - http://www.wowhead.com/?spell=48782

    - http://www.wowhead.com/?spell=48785

    - http://www.wowhead.com/?spell=48825

    Those spell doesn't heal like Official.

    In this topic we already use the right coefficients updated to 3.1.3, you didn't use this fix for tests I see.

  5. -- Add coefficient for Shadowflame DoT
    DELETE FROM `spell_bonus_data` WHERE `entry` IN ('47960', '61291');
    INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `comments`) VALUES
    ('47960', '0', '0.0667', '0', 'Warlock - Shadowflame Trigger Rank 1'),
    ('61291', '0', '0.0667', '0', 'Warlock - Shadowflame Trigger Rank 2');
    -- Add coefficient for Shadowflame DD
    DELETE FROM `spell_bonus_data` WHERE `entry` = '47897';
    INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `comments`) VALUES
    ('47897', '0.1064', '0', '0', 'Warlock - Shadowflame');
    -- Conflagrate no direct benefit from spell power with Patch 3.1.2, coefficient set to 0, deleting causes high damage because will use default instant coefficient
    DELETE FROM `spell_bonus_data` WHERE `entry` = '17962';
    INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `comments`) VALUES
    ('17962', '0', '0', '0', 'Warlock - Conflagrate');

  6. Nice, except that I don't think spell_chain is needed, in the end is the same quantity of code we have to make if we use the spell_chain or directly the spell_bonus_data entries.

    Also I would like to discuss the following suggestions and corrections, Living Bomb is just obvious:

    -- Living bomb correction, before DD and DoT coefficient in one spell, but explosion is separate
    DELETE FROM `spell_bonus_data` WHERE `entry` IN ('44457', '44461', '55361', '55362');
    INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `comments`) VALUES
    ('44457', '0', '0.2', '0', 'Mage - Living Bomb DoT'),
    ('44461', '0.4', '0', '0', 'Mage - Living Bomb Explosion Rank 1'),
    ('55361', '0.4', '0', '0', 'Mage - Living Bomb Explosion Rank 2'),
    ('55362', '0.4', '0', '0', 'Mage - Living Bomb Explosion Rank 3');
    -- Some coefficients added
    DELETE FROM `spell_bonus_data` WHERE `entry` IN ('5570', '61391', '33745',  '49821', '53022');
    INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `comments`) VALUES
    ('5570', '0', '0.2', '0', 'Druid - Insect Swarm'),
    ('61391', '0.193', '0', '0', 'Druid - Typhoon'),
    ('33745', '0', '0', '0.01', 'Druid - Lacerate'),
    ('49821', '0.2861', '0', '0', 'Priest - Mind Sear Trigger Rank 1'),
    ('53022', '0.2861', '0', '0', 'Priest - Mind Sear Trigger Rank 2');

    About the druid ones, I'm not sure about Lacerate, it can be it is hardcoded in damage calculation per combo point and needs to be updated there?

  7. Didnt really get if this one actually gives coeffs 2 Devouring plague, but presently it doesnt have any bonus damage from spellpower, i'd appriciate implementing coeffs to that one.

    ('2944', '0', '0.1849', '0', 'Priest - Devouring Plague'),

    I would like to receive comments from guys who can actually add something

    about Gauge, I don't know if we should add the coefficient with this table, maybe the attackpower is added depending on combo points and then its done within code calculation? I never played rogue.

  8. Spell coefficient of Mind Flay of Shadow priest is wrong.

    In Shadow form, they deal around 2k/s non-crit....

    Here come the fix :

    DELETE FROM `spell_bonus_data` WHERE `entry` IN ('15407','17311','17312','17313','17314','18807','25387','48155','48156');
    INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `comments`) VALUES
    ('15407', '0.257', '0', '0', 'Priest - Mind Flay rank 1'),
    ('17311', '0.257', '0', '0', 'Priest - Mind Flay rank 2'),
    ('17312', '0.257', '0', '0', 'Priest - Mind Flay rank 3'),
    ('17313', '0.257', '0', '0', 'Priest - Mind Flay rank 4'),
    ('17314', '0.257', '0', '0', 'Priest - Mind Flay rank 5'),
    ('18807', '0.257', '0', '0', 'Priest - Mind Flay rank 6'),
    ('25387', '0.257', '0', '0', 'Priest - Mind Flay rank 7'),
    ('48155', '0.257', '0', '0', 'Priest - Mind Flay rank 8'),
    ('48156', '0.257', '0', '0', 'Priest - Mind Flay rank 9');
    
    

    Source :

    http://www.wowwiki.com/Spell_power_coefficient

    Can't you use Mind Flay trigger spell so you cover all ranks?

    DELETE FROM `spell_bonus_data` WHERE `entry` = '58381';
    INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `comments`) VALUES
    ('58381', '0.257', '0', '0', 'Priest - Mind Flay - Trigger - all ranks');

    I would like this topic to don't be forgotten, post your updates and fixes to the current version.

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