So I am running a MAG thalore solipsist ! And I get blighted summoning for my thought-forms, which gives them Flame of Urh'Ok.
But they NEVER use it. I can switch to them and turn it on, but this is tedious and turn wasting.
Can they be instructed to use it somehow? Does their AI need changing? It is quite a powerful combo, given the global speed increase.
[1.0.4] Blighted Summoning talent not activating
Moderator: Moderator
[1.0.4] Blighted Summoning talent not activating
MADNESS rocks
Re: [1.0.4] Blighted Summoning talent not activating
Sometimes it is because the t-f has an anti-magic piece of equipment, and so can't activate the Flame. At least, I think that is why it says "Thought forms Flame of Urh'Ok has been disrupted by Anti-Magic forces!"
MADNESS rocks
Re: [1.0.4] Blighted Summoning talent not activating
In the code, arcane is forbidden, but anti-magic needs also to be forbidden, to allow blighted summoning to work:
Code: Select all
{type="weapon", subtype="longsword", autoreq=true, forbid_power_source={arcane=true}, not_properties = {"unique"} },
{type="armor", subtype="shield", autoreq=true, forbid_power_source={arcane=true}, not_properties = {"unique"} },
{type="armor", subtype="massive", autoreq=true, forbid_power_source={arcane=true}, not_properties = {"unique"} },
{type="armor", subtype="hands", autoreq=true, forbid_power_source={arcane=true}, not_properties = {"unique"} },
{type="armor", subtype="feet", autoreq=true, forbid_power_source={arcane=true}, not_properties = {"unique"} }
MADNESS rocks