Hi again,

I tried to replace the Trash - Cleanup Britannia container gump because its a barrel with the backpack gump but this line make it just unopenable anyone could point me in the good direction ?
Code:
        [Constructable]
        public CleanupTrashBarrel()
            : base(0x44F2)
        {
            this.Hue = 2500;
            this.Movable = false;
            this.Name = "Trash - Keep Britannia Clean";
            this.m_Cleanup = new List<CleanupArray>();
            this.GumpID = 62;
        }
 
Not sure if this would help haven't checked fiddler for gumps and barrel
The normal Trash barrel has Id of 0xE77
Edit: you have the correct open id for the barrel gump 0x3E (62)
Tested with the baseid changed to an open barrel it will open to the barrel gump as you added
[Constructable]
public CleanupTrashBarrel()
: base( 0xE77)<<<<<<<<<<<changed to this from was 0xFAE this id is a closed barrel
 
Last edited:
Back