I'll add the points for the last cave soonish.yes, i just set vashjir to true all other false. As i said, my Toon is staying in the last Cave of the Vashijr Quest Line (the complete not only the kickz Profile). And in the last Cave it cant get out of the Cave. Just take a look at the Buddy Manager Thread, there is a Picture and part of go out Hotspots.
possible to get an answer to the auction prices? some posts up, please.
ah prices calculation are below. prices are per single item and in copper. Math.Ceiling() rounds up to the nearest integral value. Ceiling Method (Double)
PHP:
if lowestBuyoutOnAH > MaxBuyout
Item.Buyout = MaxBuyout
else if lowestBuyoutOnAH < MinBuyout
Item.Buyout = MinBuyout
else
Item.Buyout = lowestBuyoutOnAH - Math.Ceiling((lowestBuyoutOnAH * UndercutPrecent / 100d));