Login
User Name:

Password:



Register

Forgot your password?
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
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
Users Online
AhrefsBot, DotBot

Members: 0
Guests: 19
Stats
Files
Topics
Posts
Members
Newest Member
489
3,791
19,644
596
Elwood

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Codebases » SmaugFUSS » Bug in get_exp_worth( )
Forum Rules | Mark all | Recent Posts

Bug in get_exp_worth( )
< Newer Topic :: Older Topic > Missing shield types...

Pages:<< prev 1 next >>
Post is unread #1 Oct 10, 2017 3:26 am   
Go to the top of the page
Go to the bottom of the page

GatewaySysop
Conjurer
GroupMembers
Posts413
JoinedMar 7, 2005

 
I forgot to post this when I originally found it, probably because some of these shield types were not enabled in stock FUSS at the time. They appear to be at this point, so in retrospect, best to point it out after all.

So in handler.c, function get_exp_worth( ), there are bonuses for shield types:

   wexp += GET_HITROLL( ch ) * ch->level * 10;
   if( IS_AFFECTED( ch, AFF_SANCTUARY ) )
      wexp += ( int )( wexp * 1.5 );
   if( IS_AFFECTED( ch, AFF_FIRESHIELD ) )
      wexp += ( int )( wexp * 1.2 );
   if( IS_AFFECTED( ch, AFF_SHOCKSHIELD ) )
      wexp += ( int )( wexp * 1.2 );
   wexp = URANGE( MIN_EXP_WORTH, wexp, MAX_EXP_WORTH );


All good and well, but half of them are missing... :huh:

    wexp += GET_HITROLL(ch) * ch->level * 10;
    if ( IS_AFFECTED(ch, AFF_SANCTUARY) )
      wexp += ( int )( wexp * 1.5 );
    if ( IS_AFFECTED(ch, AFF_FIRESHIELD) )
      wexp += ( int )( wexp * 1.2);
    if ( IS_AFFECTED(ch, AFF_ICESHIELD) )
      wexp += ( int )( wexp * 1.2 );      
    if ( IS_AFFECTED(ch, AFF_SHOCKSHIELD) )
      wexp +=( int )( wexp * 1.2 );
    if ( IS_AFFECTED(ch, AFF_VENOMSHIELD) )
      wexp += ( int )( wexp * 1.2 );
    if ( IS_AFFECTED(ch, AFF_ACIDMIST) )
      wexp += ( int )( wexp * 1.2 );            
    wexp = URANGE( MIN_EXP_WORTH, wexp, MAX_EXP_WORTH );


Hope someone finds that helpful! :smile:

Pages:<< prev 1 next >>