Login
User Name:

Password:



Register

Forgot your password?
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
6Dragons mp3 sound pack
Author: Vladaar
Submitted by: Vladaar
AFKMud 2.2.3
Author: AFKMud Team
Submitted by: Samson
SWFOTEFUSS 1.5
Author: Various
Submitted by: Samson
SWRFUSS 1.4
Author: Various
Submitted by: Samson
Users Online
AhrefsBot

Members: 0
Guests: 31
Stats
Files
Topics
Posts
Members
Newest Member
488
3,788
19,631
595
Khonsu

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Codebases » SmaugFUSS » help fighting
Forum Rules | Mark all | Recent Posts

help fighting
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Apr 7, 2015 4:09 am   
Go to the top of the page
Go to the bottom of the page

dbna2
Sorcerer
GroupMembers
Posts600
JoinedDec 3, 2008

 
So I have this bug where no matter the Stat difference you can't seem to hit the mob. I'm not sure where to even start looking. Any direction would be helpful. I know it's in fight.c but I'm not sure where to look.

Post is unread #2 Apr 16, 2015 7:38 pm   
Go to the top of the page
Go to the bottom of the page

dbna2
Sorcerer
GroupMembers
Posts600
JoinedDec 3, 2008

 
Will this work like I want it too?

I have each thing starting at 100 so for attack if its 115 it will add 15% and if its 95 it will take 5%.. The opposite for defense..

double race = 0;


//Attack Bonuses - Frieza

if ( ch->race->atkperc > 100 )
 {
   // add Damage
   race = (ch->race->atkperc - 100 );
   race = (race * .01 );
   race = race + 1;
   dam = (dam * race);
 }
 else
 {
  // Reduce Damage
  race = (ch->race->atkperc );
  race = (race * .01);
  dam = (dam * race);
 }
 
 // Defense Bonuses
   //reduce Damage
 if ( victim->race->defperc > 100 )
 {
   race = (victim->race->defperc - 100 );
   race = (race * .01 );
   race = 1 - race;
   dam = (dam * race);
 }
 else
 {
  // Add Damage
  race = (victim->race->defperc - 100 );
  race = (race * .01);
  race = race + 1;
  dam = (dam * race);
 }

Pages:<< prev 1 next >>