Login
User Name:

Password:



Register

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

Members: 0
Guests: 23
Stats
Files
Topics
Posts
Members
Newest Member
487
3,788
19,630
595
Salan

Today's Birthdays
Gatz (39)
» SmaugMuds » Codebases » SWFOTE FUSS » BUG in setforcer command afte...
Forum Rules | Mark all | Recent Posts

BUG in setforcer command after using 'sense'
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Oct 21, 2011 7:37 pm   
Go to the top of the page
Go to the bottom of the page

ayuri
Magician
GroupMembers
Posts239
JoinedJun 13, 2008

 
Ok, so poking about more with SWFOTEFUSS: I've discovered this:
If someone is checked for force by a player/imm/whatever using the fskill sense victim->force_identified is set to -1.

The setforcer command only sets victim->force_chance to be 1, and doesn't reset the force_identified back to 0, if its not 0, then sense will fail and you'll have to edit their pfile manually.

Fix:
Find code in force.c
        if( !str_cmp( arg_flevel, "force_chance" ) )

Under
victim->force_chance = 1;

Add in:
if(victim->force_identified == -1 && victim->force_identified != 1)
                victim->force_identified = 0;


If I recall correctly, 1 is you were sensed but don't know what it is.

What we are doing here is resetting the value of force_identified back to 0 if it was set to -1 by the skill sense or any other means.

I think that should do it, however I didn't spend much time looking at this so might be a good idea to double check.
ayuri

Pages:<< prev 1 next >>