Login
User Name:

Password:



Register

Forgot your password?
do_advance
Jun 27, 2026 10:32 am
By Remcon
Time spamming LOP1.6
Jun 17, 2026 4:03 pm
By Remcon
A Bash Startup Script
Feb 7, 2026 3:49 pm
By eldhamud
Force Skills
Jan 1, 2026 3:58 pm
By Elwood
Overland with Bitmaps
Jul 4, 2025 11:57 pm
By Samson
SillyMUD 1.2a
Author: J. Brothers, J. Sievert, et al
Submitted by: Samson
SillyMUD 1.1b
Author: J. Brothers, J. Sievert, et al
Submitted 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
Users Online
Anthropic, Amazonbot, Baiduspider, Bing

Members: 0
Guests: 43
Stats
Files
Topics
Posts
Members
Newest Member
512
3,813
19,727
593
TrinidadTr

» SmaugMuds » Bugfix Lists » AFKMud Bugfix List » [Bug] Players who idle off at...
Forum Rules | Mark all | Recent Posts

[Bug] Players who idle off at certain login screens can duplicate pets
< Newer Topic :: Older Topic > AFKMud 2.02

Pages:<< prev 1 next >>
Post is unread #1 Jan 12, 2008 5:43 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: Players who idle off at certain login screens can duplicate pets
Danger: High - Game exploit. This will give anyone with a pet a distinctly unfair advantage over those who don't.
Discovered in: AFKMud 2.02
Found by: Zeno
Fixed by: Remcon

---

character.cpp, char_data::~char_data()

Locate:
   list<mprog_act_list*>::iterator pd;
   for( pd = mpact.begin(); pd != mpact.end(); )
   {
      mprog_act_list *actp = (*pd);
      ++pd;

      deleteptr( actp );
   }


Below that, add:
   list<char_data*>::iterator ich;
   for( ich = this->pets.begin(); ich != this->pets.end(); )
   {
      char_data *mob = *ich;
      ++ich;

      mob->extract( true );
      deleteptr( mob );
   }


Apparently when someone who has a pet logs in and idles off at the "press enter" prompt, or any other similarly constructed login prompt, and then idles out they can duplicate their saved pets. Since pets load along with the rest of the character data, this can eventually lead to several copies sitting at the spot where the player last left the game. Not only does this create a major game exploit, it can also lead to resource waste as more and more copies of the mob get loaded.

Pages:<< prev 1 next >>