Need help with Market

Status
Not open for further replies.
T

tholder

Guest
I am use .net wrapper. See please code example:

Extension ext = new Extension();
ext.EVE().FetchMarketOrders(typeID);

//where waiting 20 sec, while fetching

List<MarketOrder> orders = ext.EVE().GetMarketOrders(typeID, EVE.ISXEVE.EVE.OrderType.Sell);

In market item with used typeID exist. (this checked manually).

Problem: orders ALL TIME is null. Whats wrong?
 

cathminer

Active Member
Same problem here. All other methods seam to work fine including Me.GetMyOrders(), except GetMarketOrders() which apparently always returns NULL no matter what I try. Possible internal bug?
 
Last edited:

Amadeus

The Maestro
Staff member
Perhaps posting a bug report on the forums here under the section marked "bug reports" might be useful.
 

A_L_F

Member
The function GetMarketOrders is not working correct in NET. The wrapper is not actual, more function from market is not function. Use lavish or you have to create your own function instead in wreaper.
I had problem with PlaceBuyOrder, PlaceSellOrde, GetMyOrdersIsReady too.

Use examples on the wiki, maybe this can help you
return Obj.ExecuteMethod("PlaceBuyOrder", stationID.ToString(), typeID.ToString(), price.ToString(), quantity.ToString(), range.ToString(), minQuantity.ToString(), duration.ToString());
 

Amadeus

The Maestro
Staff member
Like I said, post a bug report if the wrapper isn't working and which methods aren't working and then I'll update it next time I go through the bug reports forum.

They aren't broken on purpose, they've just not been updated/fixed, etc.
 
Status
Not open for further replies.
Top Bottom