Hello guys!Getting an issue in VendorMallManager script when install it,here the issue:

Custom/MaginciaBazaar/VendorMallManager.cs:
CS1729: Line 91: 'Server.ContextMenus.OpenBankEntry' no contiene un constructor que tome 2 argumentos
Scripts: One or more scripts failed to compile or no script files were found.

Here the code:

C#:
public override void AddCustomContextEntries(Mobile from, List<ContextMenuEntry> list)
        {
            if (from.Alive)
            {
            list.Add(new OpenBankEntry(from, this));
            }

            base.AddCustomContextEntries(from, list);
        }

Any idea?Thank you!
 
Back