View Single Post
  #1  
Old 03-07-2009, 07:10 AM
Wolftousen
Sarnak
 
Join Date: Apr 2008
Posts: 49
Default Berserker Dead Aim AA fix

File: zone/attack.cpp
line: 272

Insert:

Code:
//Wolftousen - Add Berserker Dead Aim AA accuracy bonus for throwing
	if(skillinuse == THROWING)
	{
		switch(GetAA(aaDeadAim))
		{
			case 1:
				chancetohit = chancetohit * 105/100;
				break;
			case 2:
				chancetohit = chancetohit * 110/100;
				break;
			case 3:
				chancetohit = chancetohit * 115/100;
				break;
		}
	}
Description: This adds the Berserkers Dead Aim AA to their throwing accuracy. It may not be in the right place in the function, but is in the right function I believe.
Reply With Quote