Login
User Name:

Password:



Register

Forgot your password?
void nanny_get_new_race -- comm.c
Mar 13, 2025 7:08 am
By Elwood
IPv6
Jan 25, 2025 10:45 pm
By Samson
mudstrlcpy and mudstrlcat
Jan 18, 2025 5:23 pm
By Samson
I3 and IMC
Jan 17, 2025 9:35 pm
By Samson
AFKMud 2.5.1
Jan 17, 2025 2:22 pm
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
AFKMud 2.5.2
Author: AFKMud Team
Submitted by: Samson
SmaugFUSS 1.9.7
Author: Various
Submitted by: Samson
Users Online
Anthropic, AhrefsBot, Yandex, Amazonbot, Bing

Members: 0
Guests: 3
Stats
Files
Topics
Posts
Members
Newest Member
507
3,812
19,722
591
TracySpencer

» SmaugMuds » Codebases » SWR FUSS » mob_clan
Forum Rules | Mark all | Recent Posts

mob_clan
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Jun 10, 2010 4:19 am   
Go to the top of the page
Go to the bottom of the page

Banner
Magician
GroupMembers
Posts169
JoinedNov 29, 2005

 
The variable mob_clan under CHAR_DATA seems to not be set anywhere except in guard recruitment. However, it's called in a few places to check mob resources being killed by same-clanned PC's and to restrict customs from pulling weapons from same-clanned PC's.

I've devised the following improvisation to set the mob's clan on resetting the area. This provides for an automatic method instead of necessitating the need to set each individual mob. This was added to reset_area, but I'm using the old reset code, so I'm unsure where this would apply at under the new reset system.

reset.cpp
            char_to_room( mob, pRoomIndex );
            if(  mob->in_room && pRoomIndex->area->planet && pRoomIndex->area->planet->governed_by )
            {
               STRFREE( mob->mob_clan );
               mob->mob_clan = STRALLOC( pRoomIndex->area->planet->governed_by->name );
            }
            economize_mobgold( mob );
            level = URANGE( 0, mob->top_level - 2, LEVEL_AVATAR );
            if( mob->vip_flags != 0 && pArea->planet )
               pArea->planet->population++;
            break;    

Pages:<< prev 1 next >>