View Single Post
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old August 17th, 2023, 08:39 AM
Quote:
Originally Posted by Sphynx View Post
Hey, so we have a Catfolk Monk that has convinced me to let him play where his Natural Attacks do Monk Unarmed damage (at the loss of Flurry). While it's not greatly problematic, thanks to ShadowChemosh's tools, to do it all manually every time he goes up a level, I got it in my head to try and automate it...

Looked at the closest thing I could find: Ki Weapons: Unarmed Damage. Which has a nice loop through the BaseWep array, but I can not find the equivalent array for your BaseNaturalAttacks. :P

Anyone have any idea what variable to loop through, and is there a way to use the current foreach loop to do this?
Not sure what the foreach loop for this specifically is, but if you want a foreach loop that looks at natural weapons:

Code:
foreach pick in hero from BaseWep where "wGroup.Natural"
Note: BaseWep includes all weapons, including natural attacks.
Sendric is offline   #2 Reply With Quote