Jatzbee Posted October 29 Author Share Posted October 29 @Xtrayellow I've also noticed tracking issues for Pokémon names starting with 'S.' I've identified and fixed the issue, so you can expect improved accuracy in the next release, along with a new feature! Link to comment https://pokemonrevolution.net/forum/topic/240282-tool-trackerbee-encounter-statistics-cross-platform/page/3/#findComment-1484652 Share on other sites More sharing options...
Jatzbee Posted October 29 Author Share Posted October 29 New Version Out: 1.1.0 Change Log 1.1.0 - Added Plus, Minus, and Delete Actions (new feature) - Improved Setup - Improved Detection of Pokemon whose name starts with 'S' - Added Double Click prevention for Start/Stop buttons Link to comment https://pokemonrevolution.net/forum/topic/240282-tool-trackerbee-encounter-statistics-cross-platform/page/3/#findComment-1484848 Share on other sites More sharing options...
Karyoplasma Posted December 4 Share Posted December 4 (edited) On 7/28/2024 at 4:03 PM, Jatzbee said: Poketime Awareness: Implement features to detect and adapt to Poketime for optimal spawn rates. Just letting you know that this is more trivial than you might expect because it doesn't require any OCR at all. Pokétime simply advances 5 times faster than real time and is based off UTC. So midnight UTC is always gonna be midnight in-game. You can simply take the UTC time now, add up how many seconds have passed, multiply them by 4 and add them to the date. The result will be the Pokétime. My description might be bad, so here is how you would do it in Java: public static String pokeTime() { LocalDateTime date = LocalDateTime.now(ZoneId.of("UTC")); int secondsPassed = date.getHour() * 3600 + date.getMinute() * 60 + date.getSecond(); secondsPassed *= 4; date = date.plusSeconds(secondsPassed); return String.format("%02d:%02d", date.getHour(), date.getMinute()); } Edited December 4 by Karyoplasma typo 1 Link to comment https://pokemonrevolution.net/forum/topic/240282-tool-trackerbee-encounter-statistics-cross-platform/page/3/#findComment-1498730 Share on other sites More sharing options...
Jatzbee Posted December 4 Author Share Posted December 4 Damn bruh @Karyoplasma, thanks for that. Definitely way trivial than I imagined thanks to you. Also appreciate the code man. 1 Link to comment https://pokemonrevolution.net/forum/topic/240282-tool-trackerbee-encounter-statistics-cross-platform/page/3/#findComment-1498750 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now