I tried to find it but i couldnt. Where can i change the spellword hue?

i mean words like: In Vas Mani, In nox etc, they appear grey by default id like to modify it to another color. Its in the core i guess.
 
Divine Fury.cs has a public override for the Mantra, may be able to edit the CliLoc to add in the color. Or may be able to edit the return to have it. Other than that the only way I know to change to the color of the mantra is to change the SpeechHue.

public override int MantraNumber
{
get
{
return 1060722;
}
}// Divinum Furis

Spell.cs has the code that calls for the SpeechHue.

if (m_Info.Mantra != null && m_Info.Mantra.Length > 0 && (m_Caster.Player || (m_Caster is BaseCreature && ((BaseCreature)m_Caster).ShowSpellMantra)))
{
m_Caster.PublicOverheadMessage(MessageType.Spell, m_Caster.SpeechHue, true, m_Info.Mantra, false);
}
 
Back