These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
 

Tools - Scripts for determining profit margin for any item in the game

Author
Tommy Morgan
Morgan Enterprises
#1 - 2013-12-16 00:07:28 UTC
Hello,

I wrote another blog post on using ruby scripts to make the life of an industrialist a little easier. The first was on reading the static dump, the second on getting market prices. This one is about using those two things to figure out the build cost, required materials, and profit margin for any buildable item. Would love some feedback!
Kivorno
Myanapa Corsica
#2 - 2013-12-16 13:03:04 UTC
It looks good, one quick note. It looks like some of your calculations are wrong:-

100 Warp Scrambler I - per unit: 119,998.50 ISK - total: 1,199,985,000.00 ISK

Should read

100 Warp Scrambler I - per unit: 119,998.50 ISK - total: 11,999,850.00 ISK

Otherwise it is a nice tutorial.

Proud creator and developer of Eve-Merchant / Eve-Merchant Sprint

Tommy Morgan
Morgan Enterprises
#3 - 2013-12-16 19:53:36 UTC  |  Edited by: Tommy Morgan
Goodness - thanks very much for pointing that out! The "money" gem expects values in cents. That particular value was getting the "* 100" applied twice. Fixed now, thanks again.