View Single Post
  #7  
Old 02-21-2011, 05:55 AM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

GMs immediately disconnect. You'd need to change the code to make it work differently.

Code:
void Client::Handle_OP_Camp(const EQApplicationPacket *app) {
#ifdef BOTS
	// This block is necessary to clean up any bot objects owned by a Client
	Bot::BotOrderCampAll(this);
#endif
	if(IsLFP())
		worldserver.StopLFP(CharacterID());

	if (GetGM()) 
	{
		OnDisconnect(true);
	}
	camp_timer.Start(29000,true);
	return;
}
Reply With Quote