What's new

Help to Fix Dash/Stampeding Roar Stacking Removing

vanasis

Verified Member
10
2014
0
Hi
can someone help me to fix problem
we cant cast Dash + stampeding Roar (druid Spell ) Both of them At the same time and i shoud be cast when first Aura finish

in another Word
Prevent Cast Dash While Stampeding Roar is Active
or
Prevent Cast Stampeding Roar while DAsh is active

plz help to solve this problem



(+ not in Spell_group can fix this because it remove first buff aura duration)
 

Ayiko

Senior User
344
2014
13
You can do that with spell_linked_spell. stuff like this my brotherrrr
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (1850, -68992, 0, '[Dash Remove Darkflight');
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (1850, -54861, 0, '[Dash Remove NitroBoost');
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (1850, -106898, 0, '[Dash Remove Stamp Roar');
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (106898, -1850, 0, '[Stamp roar Remove dash');
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (106898, -68992, 0, '[Stampede Roar remove Darkflight');
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (68992, -54861, 0, '[Dark Flight Remove Nitro Boost');
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (68992, -63718, 0, '[Dark Flight Remove Stamproar');
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (68992, -106898, 0, 'Darkflight Remove Stamp Roar');
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (68992, -1850, 0, '[Darkflight remove Dash');
 

vanasis

Verified Member
10
2014
0
Very Tnx Bro i tested it But it Remove First Spell Cast Duration and Apply second Spell
forexample when cast Dash and after that cast Stampeding Roar , with this it remove first Dash Duration and apply Stampeding Roar

but it shoud be apply when cast time orginally finish- and only time that can cast second spell is when first Duration Finished
 
Top