Login
User Name:

Password:



Register

Forgot your password?
do_advance
Jun 27, 2026 10:32 am
By Remcon
Time spamming LOP1.6
Jun 17, 2026 4:03 pm
By Remcon
A Bash Startup Script
Feb 7, 2026 3:49 pm
By eldhamud
Force Skills
Jan 1, 2026 3:58 pm
By Elwood
Overland with Bitmaps
Jul 4, 2025 11:57 pm
By Samson
SillyMUD 1.2a
Author: J. Brothers, J. Sievert, et al
Submitted by: Samson
SillyMUD 1.1b
Author: J. Brothers, J. Sievert, et al
Submitted by: Samson
SWFotEFUSS 1.5.3
Author: Various
Submitted by: Samson
SWRFUSS 1.4.3
Author: Various
Submitted by: Samson
SmaugFUSS 1.9.8
Author: Various
Submitted by: Samson
Users Online
Anthropic, DotBot, Amazonbot, DuckDuckGo

Members: 0
Guests: 32
Stats
Files
Topics
Posts
Members
Newest Member
512
3,813
19,727
593
TrinidadTr

» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » AFKMud Bug Archive » [Bug] Breath mobs are biased ...
Forum Rules | Mark all | Recent Posts

[Bug] Breath mobs are biased based on room occupant order
< Newer Topic :: Older Topic > AFKMud 1.77

Pages:<< prev 1 next >>
Post is unread #1 Sep 10, 2006 4:42 pm   
Go to the top of the page
Go to the bottom of the page

Samson
Black Hand
GroupAdministrators
Posts3,708
JoinedJan 1, 2002

 
Bug: Breath mobs are biased based on room occupant order
Danger: Medium - Whoever enters the room first is going to get picked on more
Discovered in: AFKMud 1.77
Found by: Valcados
Fixed by: Valcados

---

mspecial.c, dragon

Replace the function with:
bool dragon( CHAR_DATA * ch, char *fspell_name )
{
   CHAR_DATA *victim, *chosen = NULL;
   int sn, count=0;

   if( ch->position != POS_FIGHTING
       && ch->position != POS_EVASIVE
       && ch->position != POS_DEFENSIVE && ch->position != POS_AGGRESSIVE && ch->position != POS_BERSERK )
      return FALSE;

   for( victim = ch->in_room->first_person; victim; victim = victim->next_in_room )
   {
      if( who_fighting( victim ) != ch )
         continue;
      if( !number_range( 0, count ) )
         chosen = victim, count++;        
   }

   if( !chosen )
      return FALSE;

   if( ( sn = skill_lookup( fspell_name ) ) < 0 )
      return FALSE;
   ( *skill_table[sn]->spell_fun ) ( sn, ch->level, ch, chosen );
   return TRUE;
}


Dragons ( or other breath mobs ) would tend to breathe on whoever was listed first in order by the occupants of the room. This makes the choice a little more random based on who is fighting the mob.

Pages:<< prev 1 next >>