View Single Post
  #3  
Old 10-02-2008, 08:12 PM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

Something I noticed in the existing aa code looks like if the monk had no ranks in this aa they would still get a chance to do the extra attacks if the random returned a 0 so change >= to just >

old code in two places now:
Code:
			int specl = GetAA(aaTechniqueofMasterWu) * 20;
			if(specl == 100 || specl >= MakeRandomInt(0,100))
new:
Code:
			int specl = GetAA(aaTechniqueofMasterWu) * 20;
			if(specl == 100 || specl > MakeRandomInt(0,100))
Reply With Quote