so been looking and trying to set up my vendors where when you click on them and the bar with buy sell train so and so
have claim Bod

thought was alrdy in there plz help
 
In my version of ServUO, it's in the "public override void AddCustomContextEntries(Mobile from, List<ContextMenuEntry> list)" method, around line 1813 it says:

Code:
				if (SupportsBulkOrders(from))
				{
					list.Add(new BulkOrderInfoEntry(from, this));
				}
 
Back