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, Bytespider, AhrefsBot, Amazonbot, Google

Members: 0
Guests: 5
Stats
Files
Topics
Posts
Members
Newest Member
507
3,812
19,722
591
TracySpencer

» 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,707
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 >>