Login
User Name:

Password:



Register

Forgot your password?
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
SWRFUSS 1.4
Author: Various
Submitted by: Samson
Users Online
AhrefsBot, Bing, Yandex, Google

Members: 0
Guests: 38
Stats
Files
Topics
Posts
Members
Newest Member
488
3,789
19,632
596
Elwood

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 >>