Some ideas for AA skills.
Combat fury !!
Code:
function callcritic($percentage)
{
// calculate the normal damage
$normaldamage = dealdamage();
// base is 2% chances to make a critic we add some more chance if aaxp
if( rand < (0.02 + (0.02 * ($percentage/100))) )
{
// critic do 2x damages
$damage = $normaldamage * 2
}
}
// main loop
if (class == 'warrior' && character.level >= '12') {
// warriors got innate critics so 0% more chances
callcritic(0);
} elseif(aaxp.combatfury > 0) {
// call critic if char got aapts
/* skill at 1 : 5% more chances
skill at 2 : 10% more chances
skill at 3 : 15% more chances */
callcritic(aaxp.combatfury * 5)
}
I am lame at coding but maybe it can help someone ?
