Arcitectus / Sanderling

APIs and libraries to read information directly from the EVE Online game client.
https://forum.botlab.org
Apache License 2.0
258 stars 117 forks source link

Choosing Ore type #59

Closed henrique2d closed 4 years ago

henrique2d commented 5 years ago

this may be a dumb question, if this kind of question are not meant to be a issue, just let me know. in this part of code:

// extract the ore type from the name as seen in overview. "Asteroid (Plagioclase)" string OreTypeFromAsteroidName(string AsteroidName) => AsteroidName.ValueFromRegexMatchGroupAtIndex(@"Asteroid \(([^\)]+)", 0);

i don't know if it's a ore type selector, if it is, give me an example how to fill it, because i tried, but i have no experience with c# strings i want to mine only "Asteroid (Omber)" instead of any omber type(Golden, Silvery), i already filtered the other asteroids ores.

henrique2d commented 5 years ago

or maybe make the asteroid be chosed by order instead of distance, because you can order the ore types by the icon

Viir commented 5 years ago

i want to mine only "Asteroid (Omber)" instead of any omber type(Golden, Silvery), i already filtered the other asteroids ores.

For mining asteroids, there are some mining bots. For example, this one:

https://forum.botengine.org/t/how-to-automate-mining-asteroids-in-eve-online/628

I guess that is the one most easy to set up, so I would start from there.