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.
 

Control Tower Fuel Bays

Author
Captain Xero
3 Star Industries
#1 - 2011-10-29 14:48:30 UTC
Hi Guys,

Does anyone know where in the data dump I can find the size of the various fuel bays for control towers?
Vessper
Dark Mason Society
#2 - 2011-10-29 15:31:40 UTC
The main fuel bay size is listed under the capacity column in the invTypes table. The strontium bay is in the dgmTypeAttributes table under attribute ID 1233. E.g:

SELECT invTypes.typeName, invTypes.capacity AS FuelBay, dgmTypeAttributes.valueFloat AS StrontBay
FROM invTypes INNER JOIN dgmTypeAttributes ON invTypes.typeID = dgmTypeAttributes.typeID
WHERE attributeID=1233 AND invTypes.groupID=365;
Captain Xero
3 Star Industries
#3 - 2011-10-29 15:38:16 UTC
Well that's very obvious. Thanks!