Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Development > Archive::Development

Archive::Development Archive area for Development's posts that were moved here after an inactivity period of 90 days.

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #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
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 04:55 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3