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.