Thread: monk ac
View Single Post
  #2  
Old 07-17-2008, 05:10 PM
spoon
Sarnak
 
Join Date: Aug 2007
Posts: 34
Default

Look in zone\client_mods.cpp

Here is where they calc the AC, but I don't see it either

around line 760
Code:
else {
//		mitigation = (spellbonuses.AC/4) + (GetSkill(DEFENSE)/3) + ((itembonuses.AC*4)/3);
		mitigation = GetSkill(DEFENSE)/3 + ((itembonuses.AC*4)/3);
		if(m_pp.class_ == MONK)
			mitigation += GetLevel() * 13/10;	//the 13/10 might be wrong, but it is close...
	}

Last edited by spoon; 07-18-2008 at 01:14 AM.. Reason: um... nevermind, was looking at the wrong thing
Reply With Quote