Bug #2120
Market Order function is broken
Description
Hi, it seems that the marketorder function is broken. The following C# code worked fine before I AFK about 6 months ago. Back to then I have used the same ISXEVE .NET wrapper as you updated on 28 Sep. Now it can't retrieve any orders. I also tried the script ("My Order") on the below website, but it doesn't work either:
https://www.isxgames.com/f/threads/howto-market-interaction.1932/#post-11949
FrameLockManager myFLM = new FrameLockManager();
List<MyOrder> myList_MyOrders;
myFLM.Lock();
#region FrameLock
Extension myExt = new Extension();
myExt.Me.UpdateMyOrders();
myExt.EVE().ClearMarketOrderCache();
#endregion
myFLM.Unlock();
myList_MyOrders = null;
do
{
Thread.Sleep(1000);
myFLM.Lock();
#region FrameLock
myList_MyOrders = myExt.Me.GetMyOrders();
#endregion
myFLM.Unlock();
} while (myList_MyOrders == null);
Subtasks