SCR34M1NG G047
Member
I want to change the Daat99 Masterlooter to allow players to use [loot around their party members without receiving the "You are too close to another player to do that!" message. I'm just not sure how to go about it. I figure it needs
at the top, but I don't know what to add in the
to make it work.
Here's the full area in which this behavior is determined.
Code:
using Server.Engines.PartySystem;
Code:
if ( player != other && !other.Hidden && other.AccessLevel == AccessLevel.Player )
Here's the full area in which this behavior is determined.
Code:
foreach ( Mobile other in player.GetMobilesInRange( 5 ) )
{
if ( ! ( other is PlayerMobile ) )
continue;
if ( player != other && !other.Hidden && other.AccessLevel == AccessLevel.Player )
{
//player.PlaySound(1069); //hey
player.SendMessage("You are too close to another player to do that!");
return false; //ignore self, staff and hidden
}
}