Login
User Name:

Password:



Register

Forgot your password?
Hi - Clean SmaugFuss map/description issue..
Dec 15, 2024 7:29 pm
By Samson
AFKMud 2.2.4
Dec 10, 2024 4:09 pm
By Samson
I3 and IMC
Dec 8, 2024 6:35 pm
By Remcon
Ubuntu 22.04.5 LTS
Dec 5, 2024 5:10 pm
By Remcon
SmaugFUSS 1.8/1.9
Nov 29, 2024 11:46 am
By Remcon
SWFOTEFUSS 1.5.1
Author: Various
Submitted by: Samson
SWRFUSS 1.4.1
Author: Various
Submitted by: Samson
SmaugFUSS 1.9.5
Author: Various
Submitted by: Samson
AFKMud 2.2.4
Author: AFKMud Team
Submitted by: Samson
LOP 1.5
Author: Remcon
Submitted by: Remcon
Users Online
AhrefsBot, Bing

Members: 0
Guests: 35
Stats
Files
Topics
Posts
Members
Newest Member
494
3,808
19,707
588
Mortrex

Today's Birthdays
There are no member birthdays today.
» 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 >>