View Single Post
  #15  
Old 10-27-2023, 03:50 PM
bcbrown bcbrown is offline
Sarnak


Join Date: Jul 2022
Posts: 264
Default

Quote:
Originally Posted by Jimjam [You must be logged in to view images. Log in or Register.]
I'm really bad at finding relevant code on github, tbh that isn't my skillset domain, anyone able to pull the server AC calculations from quarm's open source so we can see at what point iksar bonus is calculated?
I have no familiarity with EQ's codebase, but looks like this might be it: https://github.com/SecretsOTheP/EQMa...pp#L4917-L4930

Code:
if (level < 10)
{
	acSum += 10;
}
else if (level > 35)
{
	acSum += 35;
}
else
{
	acSum += level;
}
This snippet is unchanged for Quarm from the upstream initial source release.
Reply With Quote