I am using RunUO and am getting this error when using the completely customizable vendor.
Line 1588 is this:
Line 2105 is this:
Code:
Errors:
+ Custom/Delphi's Customs/Test/[ServUO.com]-[ServUO.com]-CompletelyCustomizableVendor.cs:
CS1502: Line 1588: The best overloaded method match for 'Server.Mobile.SendGump(Server.Gumps.Gump)' has some invalid arguments
CS1503: Line 1588: Argument 1: cannot convert from 'Server.Gumps.WarningGump' to 'Server.Gumps.Gump'
CS1502: Line 2105: The best overloaded method match for 'Server.Mobile.SendGump(Server.Gumps.Gump)' has some invalid arguments
CS1503: Line 2105: Argument 1: cannot convert from 'Server.Gumps.WarningGump' to 'Server.Gumps.Gump'
Line 1588 is this:
Code:
m.SendGump(new WarningGump(1060635, 30720,
"Warning: You will lose all saved items on " + m_Vendor.GetName(), 0xFFC000, 420, 400,
CopyVendor_Callback, store));
Line 2105 is this:
Code:
m.SendGump(new WarningGump(1060635, 30720, "Warning: Are you sure you want to remove " + r.Title,
0xFFC000, 420, 400, DeleteReward_Callback, store));