View Single Post
  #1  
Old 09-17-2002, 10:40 AM
thoane
Fire Beetle
 
Join Date: May 2002
Posts: 18
Default Idea for some aa skills

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 ?
__________________
Thoane, enjoying eqemu everyday
Playing itakaru on eq emu test server
Reply With Quote