Six demon bag PRETBC serv
Posted: 13 Jan 2011, 13:20
the trinket Six demon bag (item=7734) is not working at all, the only thing it does it going on a 3minute cd and giving me aggro, pve. pvp only the cd.
i bought it from a player(i like to keep him anonyme on the forum since he has no matter in this realy) but for a large pool of gold since i find it to be one of the top trinkets simply because of its usage in PVP. the trade was done with COD idk if u can find the numbers in the DB but if there is no fix for this i'd like to know if a refund is possible because i bought a broken item which i doubt he knew about so its not like i want to claim my money back from him.
The spells are as following,
Fireball, hits for 200
Frostbolt, hits for 150
Chainlightning, hits for 175
Polymorph, will either sheep you or an enemy for about 6-12 seconds. Note both you and/or the mob it sheeps, will recieve additional health regen (Just like the mage one)
Cyclone-lookalike spell, will stun your target for about 10 seconds, please note damage removes the effect
Felhunter, deals about 1000 damage if it doesn't manaburn.
Felhunter's manaburn hits for about 300-303 - And manaburns 600 mana.
demonstration:
http://www.youtube.com/watch?v=6X278igTGuY
(ignore the numbers, just watch the outcome of the trinket i.e spells)
source:
http://www.wowhead.com/item=7734#comments
try:
case 14537: // Six Demon Bag
{
if( !unitTarget || !unitTarget->isAlive()) return;
uint32 ClearSpellId[6] = {
15662, // Fireball
11538, // Frostball
21179, // Chain Lightning
14621, // Polymorph
25189, // Whirlwind
14642 // summon Felhunter
};
uint32 effect = ClearSpellId[urand(0, 5)];
// Polymorph can be also auto casted 30%
if (effect == 14621 && roll_chance_i(30)) {
m_caster->CastSpell(m_caster, effect ,true); //cast
over himself
return;
}
// summon felhunter 10% (very rare) | 9556 felHunter ID
if (effect == 14642 && roll_chance_i(10))
{
// summon FelHunter npc id 9556
m_caster->CastSpell(m_caster, effect, true);
return;
} // end Felhunter proc
else
{
// roll another spell to cast instead of felhunter
effect = ClearSpellId[urand(0, 4)];
}
m_caster->CastSpell(unitTarget, effect ,true);
return;
}
source:
https://code.google.com/p/trinitycore/i ... il?id=1092
i bought it from a player(i like to keep him anonyme on the forum since he has no matter in this realy) but for a large pool of gold since i find it to be one of the top trinkets simply because of its usage in PVP. the trade was done with COD idk if u can find the numbers in the DB but if there is no fix for this i'd like to know if a refund is possible because i bought a broken item which i doubt he knew about so its not like i want to claim my money back from him.
The spells are as following,
Fireball, hits for 200
Frostbolt, hits for 150
Chainlightning, hits for 175
Polymorph, will either sheep you or an enemy for about 6-12 seconds. Note both you and/or the mob it sheeps, will recieve additional health regen (Just like the mage one)
Cyclone-lookalike spell, will stun your target for about 10 seconds, please note damage removes the effect
Felhunter, deals about 1000 damage if it doesn't manaburn.
Felhunter's manaburn hits for about 300-303 - And manaburns 600 mana.
demonstration:
http://www.youtube.com/watch?v=6X278igTGuY
(ignore the numbers, just watch the outcome of the trinket i.e spells)
source:
http://www.wowhead.com/item=7734#comments
try:
case 14537: // Six Demon Bag
{
if( !unitTarget || !unitTarget->isAlive()) return;
uint32 ClearSpellId[6] = {
15662, // Fireball
11538, // Frostball
21179, // Chain Lightning
14621, // Polymorph
25189, // Whirlwind
14642 // summon Felhunter
};
uint32 effect = ClearSpellId[urand(0, 5)];
// Polymorph can be also auto casted 30%
if (effect == 14621 && roll_chance_i(30)) {
m_caster->CastSpell(m_caster, effect ,true); //cast
over himself
return;
}
// summon felhunter 10% (very rare) | 9556 felHunter ID
if (effect == 14642 && roll_chance_i(10))
{
// summon FelHunter npc id 9556
m_caster->CastSpell(m_caster, effect, true);
return;
} // end Felhunter proc
else
{
// roll another spell to cast instead of felhunter
effect = ClearSpellId[urand(0, 4)];
}
m_caster->CastSpell(unitTarget, effect ,true);
return;
}
source:
https://code.google.com/p/trinitycore/i ... il?id=1092