RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Container Lock Down HELP PLZ

zerodowned

Sorceror
in runuo/server/items/containers

there is

C#:
public override bool IsAccessibleTo(Mobile check)
{
if ( ( check == m_Owner && m_Open ) || check.AccessLevel >= AccessLevel.GameMaster )
return base.IsAccessibleTo (check);
else
return false;
}

change to

C#:
public override bool IsAccessibleTo(Mobile check)
{
//if ( ( check == m_Owner && m_Open ) || check.AccessLevel >= AccessLevel.GameMaster )
return base.IsAccessibleTo (check);
//else
//return false;
}

There is still a check for owner under DragDrop, so that should prevent people from taking things or putting things into the container
 
Top