Recent content by kaboom2010

  1. K

    GetMarketOrders, next try.

    This is part of my function: public List<MarketOrder> GetMarketOrders(int typeID) { EVE eve = new EVE(); LavishScriptObject myList = LavishScript.Objects.NewObject("index:marketorder"); string[] strArray1 = new string[] { typeID.ToString() }...
  2. K

    How to return a variable from a function

    Precision works as Round(), for example, if i have F == 100000.625, when i make ${F.Precision[2]} as result i have 100000.63, not 100000.62. Tryed Precision, Centi, result the same. Maybe its a feature, not a bug, but when it works with function's result we have extra cent.
  3. K

    How to return a variable from a function

    Already tryed, result the same. So if you want to process some market orders with price delta = 0.01 ISK u will have troubles. atm one solution - if you want calculate some prices - max, min, avg, etc, you should do that in main function. IMHO
  4. K

    How to return a variable from a function

    Wtf? simple script: function main() { variable float F call DoSomething F:Set[${Return}] echo F = ${F} } function:float DoSomething() { return 599999.62 } As result i have What is wrong with this code? Looks like cumulative error. return 10.6 return 100.6 return...
  5. K

    Need help with Market

    No solution yet? Anyone?
Top Bottom