sahisahi
Member
I want to some containers to not show their content (items inside)
The chest im talking about are ''LockableContainer''
I tried to add this to the chest script:
And didnt worked, also i tried;
also this didnt worked either:
Locked ones are not supposed to show their items but they still do. Anyway i dont want to lock these chests thought.Thanks
The chest im talking about are ''LockableContainer''
I tried to add this to the chest script:
Code:
public override bool DisplaysContent{ get{ return false; } }
And didnt worked, also i tried;
Code:
public override bool CheckContentDisplay( Mobile from )
{
return;
}
Code:
public override void DisplayTo(Mobile to)
{
return;
// base.DisplayTo(to);
}
Locked ones are not supposed to show their items but they still do. Anyway i dont want to lock these chests thought.Thanks
Last edited: