Login
User Name:

Password:



Register

Forgot your password?
Overland with Bitmaps
Jul 4, 2025 11:57 pm
By Samson
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
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, Google, AhrefsBot, Amazonbot

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

» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » AFKMud Bug Archive » [Bug] Run command does not st...
Forum Rules | Mark all | Recent Posts

[Bug] Run command does not stop the player if combat begins
< Newer Topic :: Older Topic > AFKMud 1.77

Pages:<< prev 1 next >>
Post is unread #1 Dec 2, 2006 7:14 pm   
Go to the top of the page
Go to the bottom of the page

Samson
Black Hand
GroupAdministrators
Posts3,708
JoinedJan 1, 2002

 
Bug: Run command does not stop the player if combat begins
Danger: High - Game exploit condition. Could be used to circumvent required events.
Discovered in: AFKMud 1.77
Found by: Zeno
Fixed by: Samson

---

act_move.c, do_run

Locate:
         if( ( pexit = find_door( ch, arg, TRUE ) ) != NULL )
         {
            if( ch->move < 1 )
            {
               send_to_char( "You are too exhausted to run anymore.\n\r", ch );
               ch->move = 0;
               break;
            }
            if( move_char( ch, pexit, 0, pexit->vdir, TRUE ) == rSTOP )
               break;
         }


Below that, add:
         if( ch->position != POS_STANDING && ch->position != POS_MOUNTED )
         {
            send_to_char( "Your run has been interrupted!\r\n", ch );
            break;
         }


Locate:
      while( ( pexit = find_door( ch, arg, TRUE ) ) != NULL )
      {
         if( ch->move < 1 )
         {
            send_to_char( "You are too exhausted to run anymore.\n\r", ch );
            ch->move = 0;
            break;
         }
         if( move_char( ch, pexit, 0, pexit->vdir, TRUE ) == rSTOP )
            break;


Below that, add:
         if( ch->position != POS_STANDING && ch->position != POS_MOUNTED )
         {
            send_to_char( "Your run has been interrupted!\r\n", ch );
            break;
         }


As written the run command will allow anyone using it to fly right past an aggro mob that might be in the room. If the mob initiated combat, that combat does not break the run loop since it has not checked to be sure you're still in the right position while moving. Anything which takes you from either standing or mounted should halt the run, so this will also catch anything else which causes positions to change.

Pages:<< prev 1 next >>