From 2a4c2c5e8e396585d1b70435f8aefe7c91183393 Mon Sep 17 00:00:00 2001 From: ole1986 Date: Thu, 14 Aug 2014 00:07:10 +0200 Subject: [PATCH] support for one or more bot systems --- plugins/Radegast.Plugin.EVOVend/EVOvendPlugin.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/Radegast.Plugin.EVOVend/EVOvendPlugin.cs b/plugins/Radegast.Plugin.EVOVend/EVOvendPlugin.cs index 28b733a..ac46614 100644 --- a/plugins/Radegast.Plugin.EVOVend/EVOvendPlugin.cs +++ b/plugins/Radegast.Plugin.EVOVend/EVOvendPlugin.cs @@ -111,7 +111,7 @@ namespace Radegast.Plugin.EVOVend else param.Add("price", "0"); param.Add("texture", ""); - + param.Add("botUUID", client.Self.AgentID.ToString()); string str = this.RequestVendor("ADDPRODUCT", param); int result = Int32.Parse(str); @@ -426,8 +426,10 @@ namespace Radegast.Plugin.EVOVend isSending = true; Inventory.RootFolder.OwnerID = client.Self.AgentID; - - var strContent = this.RequestVendor("GETOUTSTANDING"); + + Dictionary param = new Dictionary(); + param.Add("botUUID", client.Self.AgentID.ToString()); + var strContent = this.RequestVendor("GETOUTSTANDING", param); List queue = this.parseResponse(strContent); instance.MainForm.TabConsole.DisplayNotificationInChat(pluginName + ": " + queue.Count + " Items in Queue List"); -- 2.11.0