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, Sogou, Majestic-12

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

Today's Birthdays
RapidRunner (39), ToadVile (39), Deathbringer (39)
» SmaugMuds » Codebases » LoP Codebase » bribe_trigger
Forum Rules | Mark all | Recent Posts

bribe_trigger
< Newer Topic :: Older Topic > question

Pages:<< prev 1 next >>
Post is unread #1 Oct 12, 2011 2:46 am   Last edited Oct 12, 2011 2:47 am by Matteo2303
Go to the top of the page
Go to the bottom of the page

Matteo2303
Apprentice
GroupMembers
Posts86
JoinedAug 25, 2003

 
In mprog_bribe_trigger there is:

      /* Go through once to see which we should use */
      onprog = 0;
      for( mprg = mob->pIndexData->mudprogs; mprg; mprg = mprg->next )
      {
         ++onprog;
         if( ( mprg->type == BRIBE_PROG ) && ( uamount >= atoi( mprg->arglist ) ) && ( amdiff == 0 || ( uamount - atoi( mprg->arglist ) ) < amdiff ) )
         {
            amdiff = ( uamount - atoi( mprg->arglist ) );
            useprog = onprog;
         }
      }

      /* Go through it again and use the closest bribe program to the amount */
      onprog = 0;
      for( mprg = mob->pIndexData->mudprogs; mprg; mprg = mprg->next )
      {
         if( ++onprog != useprog )
            continue;

         if( ( mprg->type == BRIBE_PROG ) && ( uamount >= atoi( mprg->arglist ) ) )
         {
            increase_gold( mob, uamount );
            mprog_driver( mprg->comlist, mob, ch, obj, NULL, false );
            if( obj )
               extract_obj( obj );
            break;
         }
      }


I don't know but, is possible declare another mprg and make:

MPROG_DATA *sprg = NULL; 
      /* Go through once to see which we should use */
      for( mprg = mob->pIndexData->mudprogs; mprg; mprg = mprg->next )
       if( ( mprg->type == BRIBE_PROG ) && ( uamount >= atoi( mprg->arglist ) ) && ( amdiff == 0 || ( uamount - atoi( mprg->arglist ) ) < amdiff ) )
         {
            amdiff = ( uamount - atoi( mprg->arglist ) );
            sprg = mprg;         
         }

if ( sprg )
{
       increase_gold( mob, uamount );
       mprog_driver( sprg->comlist, mob, ch, obj, NULL, false );
       if( obj )
       extract_obj( obj );
       break;
}

Post is unread #2 Oct 26, 2011 8:33 pm   
Go to the top of the page
Go to the bottom of the page

Remcon
Geomancer
GroupAdministrators
Posts1,917
JoinedJul 26, 2005

 
Haven't tried, but should be able to. Minus the break in the part your adding since it isnt in a for loop

Post is unread #3 Oct 31, 2011 3:04 am   Last edited Oct 31, 2011 3:08 am by Matteo2303
Go to the top of the page
Go to the bottom of the page

Matteo2303
Apprentice
GroupMembers
Posts86
JoinedAug 25, 2003

 
Yeah, minus "break".
My bad.

Bye
mat

Pages:<< prev 1 next >>