I am trying to the Brutal Throw feat that replaces Strength for Dexterity when attacking with a Thrown weapon. Since Zen Archery, which replaces Wisdom for Dexterity works in a similar way, I have utilized its scripting, changing the script to as follows, but it will still not replace Strength with Dexterity for thrown weapons. I have tested it with Shuriken (a thrown only weapon) and with a variaty of weapons that are thrown and melee.
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
field[abValue].value += maximum(#attrmod[aSTR] - #attrmod[aDEX], 0)
foreach pick in hero from BaseWep where "wFtrGroup.Thrown"
eachpick.field[wAttBonus].value += field[abValue].value
nexteach
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
field[abValue].value += maximum(#attrmod[aSTR] - #attrmod[aDEX], 0)
foreach pick in hero from BaseWep where "wFtrGroup.Thrown"
eachpick.field[wAttBonus].value += field[abValue].value
nexteach