Page 3 of 3 FirstFirst 123
Results 31 to 45 of 45
http://idgs.in/364467
  1. #31
    Xanvial's Avatar
    Join Date
    Nov 2010
    Location
    Somewhere between Heaven and Hell
    Posts
    1,495
    Points
    553.30
    Thanks: 0 / 148 / 113

    Default

    bump...

    swt lah iklan sebelah ini T_T >>>>>>>>>>>
    jadi berantakan code nya, post di bawah ini, sorry doble post
    Last edited by Xanvial; 30-04-11 at 20:08.

  2. Hot Ad
  3. #32
    Xanvial's Avatar
    Join Date
    Nov 2010
    Location
    Somewhere between Heaven and Hell
    Posts
    1,495
    Points
    553.30
    Thanks: 0 / 148 / 113

    Default

    nemu juga mirip (atau munkgin emang sumber sama) dari punya totonk di halaman sebelumnya, sapa tau bisa bantu

    Code:
    // Seal of Vengeance (damage calc on apply aura)
    case 31801:
    {
    	if (effIndex != 0)    		// effect 1,2 used by seal unleashing code
    		return false;
    
    
    	// At melee attack or Hammer of the Righteous spell damage considered as melee attack
    	if ((procFlag & PROC_FLAG_SUCCESSFUL_MELEE_HIT) || (procSpell && procSpell->Id == 53595))
    		triggered_spell_id = 31803;
    	// On target with 5 stacks of Holy Vengeance direct damage is done
    	if (Aura * aur = pVictim->GetAura(triggered_spell_id, GetGUID()))
    	{
    		if (aur->GetStackAmount() == 5)
    		{
    			aur->RefreshDuration();
    			CastSpell(pVictim, 42463, true);
    			return true;
    		}
    	}
    
    	// Only Autoattack can stack debuff
    	if (procFlag & PROC_FLAG_SUCCESSFUL_MELEE_SPELL_HIT)
    		return false;
     		break;
    	}
    
    // Seal of Corruption
    case 53736:
    {
    	if (effIndex != 0)		// effect 1,2 used by seal unleashing code
    		return false;
    
    
    	// At melee attack or Hammer of the Righteous spell damage considered as melee attack
    	if ((procFlag & PROC_FLAG_SUCCESSFUL_MELEE_HIT) || (procSpell && procSpell->Id == 53595))
    		triggered_spell_id = 53742;
    	// On target with 5 stacks of Blood Corruption direct damage is done
    	if (Aura * aur = pVictim->GetAura(triggered_spell_id, GetGUID()))
    	{
    		if (aur->GetStackAmount() == 5)
    		{
    			aur->RefreshDuration();
    			CastSpell(pVictim, 53739, true);
    			return true;
    		}
    	}
    
    	// Only Autoattack can stack debuff
    	if (procFlag & PROC_FLAG_SUCCESSFUL_MELEE_SPELL_HIT)
     		return false;
    		break;	
    }
    (eh itu kurung kurawal terakhir ga terlalu kelihatan, aneh di apa2in ga bisa biar kelihatan, klo di copy jngn ketinngalan y ^^)
    dari http://code.google.com/p/dws-core/so...278a9357a043db

    klo ternyata udah gitu, mungkin (mungkin nih, ga tau source nya kyk gmna), crusader strike dan divine storm blm di anggep melee strike, jadi ga bisa di keluarin trigger seal corruption/vengeance
    Last edited by Xanvial; 01-05-11 at 19:37.

  4. #33
    Totonk's Avatar
    Join Date
    Feb 2010
    Posts
    507
    Points
    587.70
    Thanks: 22 / 28 / 19

    Default

    wah lebih mantep lagi nih codenya,,moga2 aj ada GM sudi mampir/ngasih tanggapan T-T

  5. #34
    Bobbie's Avatar
    Join Date
    Mar 2007
    Location
    ???
    Posts
    885
    Points
    768.59
    Thanks: 31 / 20 / 17

    Default

    moga2 maintenance minggu ini dah bener SoV

  6. #35
    Xanvial's Avatar
    Join Date
    Nov 2010
    Location
    Somewhere between Heaven and Hell
    Posts
    1,495
    Points
    553.30
    Thanks: 0 / 148 / 113

    Default

    bump... blm juga di benerin T_T

    saran lagi, gmna klo spell id nya crusader strike dan divine storm di mskin ke clausa if buat trigger procnya?
    Code:
    if ((procFlag & PROC_FLAG_SUCCESSFUL_MELEE_HIT) || (procSpell && procSpell->Id == 53595))
    		triggered_spell_id = 31803;
    jadi misal hasilnya
    Code:
    if ((procFlag & PROC_FLAG_SUCCESSFUL_MELEE_HIT) || (procSpell && procSpell->Id == 53595) || (procSpell && procSpell->Id == x) || (procSpell && procSpell->Id == y))
    		triggered_spell_id = 31803;
    dengan x id nya crusader strike, dan y id nya divine storm

  7. #36
    Bobbie's Avatar
    Join Date
    Mar 2007
    Location
    ???
    Posts
    885
    Points
    768.59
    Thanks: 31 / 20 / 17

    Default

    up..up..
    segera dibenerin plz..ga sabar liat dps pake SoV

  8. #37
    wirata's Avatar
    Join Date
    May 2010
    Posts
    208
    Points
    203.50
    Thanks: 11 / 6 / 6

    Default hope

    Iya,berharap di fix ini,2x icc,pake seal sor dps 19,2k di saurfang,pas ganti socrr pas next icc,19,3k....andaikan udah di fix,pally menguasai dps ni di raid...kalo blm di fix juga,terpaksa de masih pake t9 terus ,lol

  9. #38
    Xanvial's Avatar
    Join Date
    Nov 2010
    Location
    Somewhere between Heaven and Hell
    Posts
    1,495
    Points
    553.30
    Thanks: 0 / 148 / 113

    Default

    abis ubek2 codetrackernya tirinity nemu lagi
    dari https://github.com/TrinityCore/TrinityCore/issues/1461

    Link Source klo mau lihat lebih enak

    Code:
    @@ -6700,22 +6700,28 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger
    	if (effIndex != 0)                       // effect 1, 2 used by seal unleashing code
    		return false;
     
    - 	// At melee attack or Hammer of the Righteous spell damage considered as melee attack
    -	if ((procFlag & PROC_FLAG_DONE_MELEE_AUTO_ATTACK) || (procSpell && procSpell->Id == 53595))
    +	// Auto attack, Hammer of the Righteous
    +	bool stacker = ((procFlag & PROC_FLAG_DONE_MELEE_AUTO_ATTACK) || (procSpell && procSpell->Id == 53595));
    +	// Divine Storm, Crusader Strike
    +	bool damager = ((procSpell && procSpell->Id == 53385) || (procSpell && procSpell->Id == 35395));
    +
    +	// Only proc melee attacks
    +	if (stacker || damager)
    		triggered_spell_id = 31803;
    	// On target with 5 stacks of Holy Vengeance direct damage is done
    	if (Aura * aur = pVictim->GetAura(triggered_spell_id, GetGUID()))
    	{
    		if (aur->GetStackAmount() == 5)
    		{
    -			aur->RefreshDuration();
    +			if (stacker)
    +				aur->RefreshDuration();
    			CastSpell(pVictim, 42463, true);
    			return true;
    		}
    	}
     
    -	// Only Autoattack can stack debuff
    -	if (procFlag & PROC_FLAG_DONE_SPELL_MELEE_DMG_CLASS)
    +	// Only Autoattack and Hammer of the Righteous can stack debuff
    +	if (!stacker)
    		return false;
    	break;
    }
    
    @@ -6725,22 +6731,28 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger
    	if (effIndex != 0)                       // effect 1, 2 used by seal unleashing code
    		return false;
     
    -	// At melee attack or Hammer of the Righteous spell damage considered as melee attack
    -	if ((procFlag & PROC_FLAG_DONE_MELEE_AUTO_ATTACK) || (procSpell && procSpell->Id == 53595))
    +	// Auto attack, Hammer of the Righteous
    +	bool stacker = ((procFlag & PROC_FLAG_DONE_MELEE_AUTO_ATTACK) || (procSpell && procSpell->Id == 53595));
    +	// Divine Storm, Crusader Strike
    +	bool damager = ((procSpell && procSpell->Id == 53385) || (procSpell && procSpell->Id == 35395));
    +
    +	// Only proc melee attacks
    +	if (stacker || damager)
    		triggered_spell_id = 53742;
    	// On target with 5 stacks of Blood Corruption direct damage is done
    	if (Aura * aur = pVictim->GetAura(triggered_spell_id, GetGUID()))
    	{
    		if (aur->GetStackAmount() == 5)
    		{
    -			aur->RefreshDuration();
    +			if (stacker)
    +				aur->RefreshDuration();
    			CastSpell(pVictim, 53739, true);
    			return true;
    		}
    	}
     
    -	// Only Autoattack can stack debuff
    -	if (procFlag & PROC_FLAG_DONE_SPELL_MELEE_DMG_CLASS)
    +	// Only Autoattack and Hammer of the Righteous can stack debuff
    +	if (!stacker)
    		return false;
    	break;
    }
    yg ada tanda - line yg di hapus dari source awal yg di server skrng
    yg ada tanda + source tambahan buat benerin
    Last edited by Xanvial; 05-06-11 at 22:31.

  10. #39
    wirata's Avatar
    Join Date
    May 2010
    Posts
    208
    Points
    203.50
    Thanks: 11 / 6 / 6

    Default

    bantu bump ini thread ,semoga bisa di fix talent sov/socrrnya

  11. #40
    wirata's Avatar
    Join Date
    May 2010
    Posts
    208
    Points
    203.50
    Thanks: 11 / 6 / 6

    Default

    bump di hari ke-x. . . .

    semoga dilirik,setelah dilirik,di fix.Amin

  12. #41
    Xanvial's Avatar
    Join Date
    Nov 2010
    Location
    Somewhere between Heaven and Hell
    Posts
    1,495
    Points
    553.30
    Thanks: 0 / 148 / 113

    Default

    ok dah bener ^^

    thanks a lot buat GM nya
    My Guild Website
    DPS is Science, Healing is Art, Tanking is Strategy

  13. #42
    wirata's Avatar
    Join Date
    May 2010
    Posts
    208
    Points
    203.50
    Thanks: 11 / 6 / 6

    Default

    bump bump,btw udah bener?kok pas gw test di dummy,itu sealnya masih sama de keknya kek dulu. . . .


    *EDIT+RALAT

    UDAH BENER ,sorry2 salah liat
    Last edited by wirata; 07-07-11 at 23:26.

  14. #43

    Join Date
    Jul 2010
    Posts
    51
    Points
    36.10
    Thanks: 4 / 2 / 2

    Default

    Udh bener skr skill seal of corruption nya kk?

    Skalian mu tanya, heart of the crusade itu emg error ya skr? ga ada nambahin 3%crit nya?

  15. #44
    fullcream's Avatar
    Join Date
    Aug 2011
    Posts
    134
    Points
    58.60
    Thanks: 1 / 5 / 5

    Default

    ohhh ternyata masi bug to.. ampe 50% ya...
    .
    cpt cpt di fix de ini termasuk major bug
    .
    btw di ally populasi pally bejibun lohhh....... di horde jg banyak tapi gak sebanyak ally
    .
    pasti cepet di fix....

  16. #45
    fullcream's Avatar
    Join Date
    Aug 2011
    Posts
    134
    Points
    58.60
    Thanks: 1 / 5 / 5

    Default

    Quote Originally Posted by fullcream View Post
    ohhh ternyata masi bug to.. ampe 50% ya...
    .
    cpt cpt di fix de ini termasuk major bug
    .
    btw di ally populasi pally bejibun lohhh....... di horde jg banyak tapi gak sebanyak ally
    .
    pasti cepet di fix....
    eh sooryy udh bener lagi ya...????
    .

Page 3 of 3 FirstFirst 123

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •