Login
User Name:

Password:



Register

Forgot your password?
 I3 and IMC
Dec 26, 2024 3:27 am
By GatewaySysop
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
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
LOP 1.6
Author: Remcon
Submitted 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
Users Online
Remcon, Google, Bing

Members: 1
Guests: 10
Stats
Files
Topics
Posts
Members
Newest Member
496
3,808
19,708
593
MarcelinoD

Today's Birthdays
There are no member birthdays today.
» 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,697
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::iterator pd;
   for( pd = mpact.begin(); pd != mpact.end(); )
   {
      mprog_act_list *actp = (*pd);
      ++pd;

      deleteptr( actp );
   }


Below that, add:
   list::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 >>