Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Miscellaneous => Topic started by: slowy on April 21, 2013, 12:56:47 pm

Title: [QUESTION] The sound of the spells
Post by: slowy on April 21, 2013, 12:56:47 pm
English :

Hi everyone !

I have a quite small question to ask you...

Can we modify or delete the sound of a spell?
If yes, how can we do it ? =)
I suppose that it's in dbc, but what value do I owe modify ?

Thank you for being you interest in my problem and please answering it !
Best Regards, Slowy


Sorry, if i have made any spelling mistakes... Indeed I'm french !


Français :


Bonjour à tous et à toutes !


J'ai une toute petite question à vous poser...

Peut-on modifier ou supprimer le son d'un spell ?
Si oui, comment fait-on ? =)
Je pense que c'est dans les dbc, mais quelle valeur dois-je modifier ?


Merci de vous être intéressé à ma question et d'y répondre !
Cordialement, Slowy
Title: Re: [QUESTION] The sound of the spells
Post by: Crumpet on April 21, 2013, 01:40:14 pm
It's actually in SpellVisualKit.dbc column 16
heres a link to the wiki page : http://www.pxr.dk/wowdev/wiki/index.php ... ualKit.dbc (http://www.pxr.dk/wowdev/wiki/index.php?title=SpellVisualKit.dbc" onclick="window.open(this.href);return false;)

You need to know the order of these things to modify spell visuals (and in this case sound), it goes as follows:
Spell.dbc - column 131 (http://www.pxr.dk/wowdev/wiki/index.php?title=Spell.dbc (http://www.pxr.dk/wowdev/wiki/index.php?title=Spell.dbc" onclick="window.open(this.href);return false;))
v
SpellVisual.dbc - from here select the column that attains to the part of the spell you want to alter the sound for e.g. impact (http://www.pxr.dk/wowdev/wiki/index.php?title=Spell.dbc (http://www.pxr.dk/wowdev/wiki/index.php?title=Spell.dbc" onclick="window.open(this.href);return false;))
v
SpellVisualKit.dbc - take the row id from the value in SpellVisual.dbc and column 16 is what value you alter in order to change the sound. (http://www.pxr.dk/wowdev/wiki/index.php ... ualKit.dbc (http://www.pxr.dk/wowdev/wiki/index.php?title=SpellVisualKit.dbc" onclick="window.open(this.href);return false;))
v
SoundEntries.dbc - the values in column 16 attain to the row ids in this dbc. (http://www.pxr.dk/wowdev/wiki/index.php ... ntries.dbc (http://www.pxr.dk/wowdev/wiki/index.php?title=SoundEntries.dbc" onclick="window.open(this.href);return false;))
Title: Re: [QUESTION] The sound of the spells
Post by: slowy on April 22, 2013, 12:13:47 pm
Thanks :D