View Single Post
  #2  
Old 03-07-2009, 08:46 AM
Wolftousen
Sarnak
 
Join Date: Apr 2008
Posts: 49
Default

To add to the above for the Rage Volley Discipline to work properly you also need to do the following to the same segment:

Code:
//Wolftousen - Add Berserker Dead Aim AA accuracy bonus for throwing
if(skillinuse == THROWING)
{
	if(isCasting() && CastingSpellID() == 6754) //if we are casting Rage Volley Discipline, we should always hit with it
	{
		chancetohit = 1001; //Rage volley is gaurenteed to hit
	}
	else
	{
		switch(GetAA(aaDeadAim))
		{
			case 1:
				chancetohit = chancetohit * 105/100;
				break;
			case 2:
				chancetohit = chancetohit * 110/100;
				break;
			case 3:
				chancetohit = chancetohit * 115/100;
				break;
		}
	}
}
Reply With Quote