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: 45
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 » 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 >>