Mtarnuhal / FrozenCookies

An automated Cookie Clicker tool.
27 stars 22 forks source link

Expose Building Efficiency list #88

Closed Frustrated-Programmer closed 2 years ago

Frustrated-Programmer commented 2 years ago

I'm making a mod that sorts the building list, https://github.com/Frustrated-Programmer/BuildingSorter

I'd like to include a sorter for YOUR mod, that sorts all buildings based on the efficiency of purchasing it. But not sure how to access your efficiency per building. So, I'm sure you already check the efficiency of each building and find the highest efficiency for AutoBuy to function.

I'm asking you to expose the efficiency for EACH building, it doesn't even need to be sorted as my sorter would sort the building list anyways.

Mtarnuhal commented 2 years ago

I hope this is what you are looking for. FrozenCookies.caches.recommendationList or recommendationList() This will give you back an array of the efficiency table.

Frustrated-Programmer commented 2 years ago

That is exactly what I'm looking for! Thank you so much.