Hello, I am trying to remove the Spell channeling property on craftable ranged weapons (bow, crossbow, composite bow...)
Anyone knows what script i need to modify in order to remove this property? I think all i need is to remove this property on Baserunictool.cs but i am not sure if i need to modify other scripts too

Code:
case  9: ApplyAttribute( primary,    min, max, AosAttribute.SpellChanneling,                1, 1 ); break;
 
Leave the "break;" line in there so you don't have trouble with a missing case statement.

You could also duplicate one of the other buffs to replace that one so they'll get some kind of bonus on the item.
 
That looks like the only place you need to edit. I took a quick look at a few loot-related files and don't see any chances for spell channeling there but you may want to go behind me just to be sure.
 
Back