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, DotBot, Bing

Members: 0
Guests: 5
Stats
Files
Topics
Posts
Members
Newest Member
507
3,812
19,723
594
Bardecome

» SmaugMuds » Codebases » SmaugFUSS » Bug in disarm( )
Forum Rules | Mark all | Recent Posts

Bug in disarm( )
< Newer Topic :: Older Topic > Missing check for remove progs...

Pages:<< prev 1 next >>
Post is unread #1 Nov 6, 2017 11:21 pm   
Go to the top of the page
Go to the bottom of the page

GatewaySysop
Conjurer
GroupMembers
Posts429
JoinedMar 7, 2005

 
Another one that popped up in play testing (I should do more of that!). When being disarmed, the remove progs are not being checked. Easy fix though! :wink:

In skills.c, function disarm( ), around here:

   if( obj == get_eq_char( victim, WEAR_WIELD ) && ( tmpobj = get_eq_char( victim, WEAR_DUAL_WIELD ) ) != NULL )
      tmpobj->wear_loc = WEAR_WIELD;

   obj_from_char( obj );


Consider adding this:

   if( obj == get_eq_char( victim, WEAR_WIELD ) && ( tmpobj = get_eq_char( victim, WEAR_DUAL_WIELD ) ) != NULL )
      tmpobj->wear_loc = WEAR_WIELD;

   oprog_remove_trigger( victim, obj );

   obj_from_char( obj );


Post is unread #2 Nov 7, 2017 6:19 pm   
Go to the top of the page
Go to the bottom of the page

Remcon
Geomancer
GroupAdministrators
Posts1,992
JoinedJul 26, 2005

 
This one I remember from being a player...now that you mention it. It was the only way to remove some items that would use triggers to keep you from removing it.

Post is unread #3 Nov 12, 2017 8:54 pm   Last edited Nov 12, 2017 8:57 pm by GatewaySysop
Go to the top of the page
Go to the bottom of the page

GatewaySysop
Conjurer
GroupMembers
Posts429
JoinedMar 7, 2005

 
Remcon said:

This one I remember from being a player...now that you mention it. It was the only way to remove some items that would use triggers to keep you from removing it.


Yup. And if I recall other bugs, it was also possible to use disarm to remove what should be non-removable items. Lots of holes in that disarm code, which is surprising given that it must have been a widely exploited set of bugs and, presumably, well known. How nobody caught it and/or fixed it sooner is seriously beyond me. :shrug:

I need to do more play testing and catch more of these bugs. :imp:

Pages:<< prev 1 next >>