I have an ability that allows the wielding of spiked chains, and similar weapons, as one-handed weapons.
Scripts posted for future reference
First 2000
Scripts posted for future reference
First 2000
Code:
~if we've been replaced, get out now
doneif (tagis[Helper.SpcReplace] <> 0)
~if we aren't our chosen race get out now
doneif (#hasrace[rFCOphiAng] = 0)
foreach thing in BaseWep where "wFtrGroup.Flails"
perform eachthing.pulltags[WepProf.?]
perform eachthing.pulltags[wClass.?]
nexteach
~ I don't know what this does but it's in the original script I've copied and modified.
perform hero.pushtags[WepProf.?]
perform hero.pushtags[wClass.?]
~ Cycle through and apply the Helper.ExoticProf tag to all examples of
~ the chosen weapon on the hero. This is important for the Aldori Dueling
~ Sword specifically, and possibly others.
~ I know this relates to Flails but i've left it alone.
var searchexpr as string
searchexpr = tagids[WepProf.?,"|"]
foreach pick in hero from BaseWep where searchexpr
perform eachpick.assign[Helper.ExoticProf]
nexteach[SIZE=2]
[/SIZE]~Lets assign the One Handed tag to our chosen weapon deleting the Two Handed tag first.
foreach pick in hero from BaseWep where "wFtrGroup.Flails"
perform eachpick.delete[wClass.TwoHanded]
perform eachpick.assign[wClass.OneHanded]
nexteach
Last edited: