This commit is contained in:
Kyle Coburn 2015-04-13 11:22:21 -07:00
commit 7c0ae47e17
3 changed files with 10 additions and 4 deletions

View File

@ -2,7 +2,10 @@
An automated computer program that speedruns Pokémon Red, Blue, or Yellow. An automated computer program that speedruns Pokémon Red, Blue, or Yellow.
Pokémon Red Any%: [1:51:11](https://www.youtube.com/watch?v=M4pOlQ-mIoc) (23 June 2014) Here are the bots best runs so far in the Pokémon Red Any% Glitchless category:
* [1:50:14 (13 April 2015)](https://www.youtube.com/watch?v=lVE_ksd4WJw)
* [1:51:11 (23 June 2014)](https://www.youtube.com/watch?v=M4pOlQ-mIoc)
## Watch live ## Watch live

View File

@ -2,14 +2,17 @@
PokéBot comes with a built-in run recording feature that takes advantage of random number seeding to reproduce runs in their entirety. Any time the bot resets or beats the game, it logs a number to the Lua console that is the seed for the run. This seed allows you to easily share the run with others. PokéBot comes with a built-in run recording feature that takes advantage of random number seeding to reproduce runs in their entirety. Any time the bot resets or beats the game, it logs a number to the Lua console that is the seed for the run. This seed allows you to easily share the run with others.
Have you found a seed that results in a run of 1:52:00 or better using the bots default settings? [Let us know](https://github.com/kylecoburn/PokeBot/issues/4), and well add it to the list! Have you found a seed that results in a run of 1:51:30 or better using the bots default settings? [Let us know](https://github.com/kylecoburn/PokeBot/issues/4), and well add it to the list!
| Time | Frames | Seed | Nidoran name | Bot version | Found by | | Time | Frames | Seed | Nidoran name | Bot version | Found by |
|---------|---------|--------------|--------------|-------------|----------------------------------------------| |---------|---------|--------------|--------------|-------------|----------------------------------------------|
| 1:50:11 | 396,858 | `1428898417` | , | v1.4.2 | ThePokéBot | | 1:50:11 | 396,858 | `1428898417` | , | v1.4.2 | ThePokéBot |
| 1:50:22 | 397,352 | `1428414915` | A | v1.4.2 | [Gofigga](http://www.twitch.tv/gofigga) |
| 1:50:36 | 398,208 | `1428414915` | A | v1.4.0 | [Gofigga](http://www.twitch.tv/gofigga) | | 1:50:36 | 398,208 | `1428414915` | A | v1.4.0 | [Gofigga](http://www.twitch.tv/gofigga) |
| 1:50:37 | 398,226 | `1428414915` | A | v1.3.0 | [Gofigga](http://www.twitch.tv/gofigga) | | 1:50:37 | 398,226 | `1428414915` | A | v1.3.0 | [Gofigga](http://www.twitch.tv/gofigga) |
| 1:50:41 | 398,509 | `1428873163` | A | v1.4.1 | [Marcin1503](https://github.com/Marcin1503) |
| 1:50:51 | 399,076 | `1428414915` | A | v1.4.1 | [Gofigga](http://www.twitch.tv/gofigga) | | 1:50:51 | 399,076 | `1428414915` | A | v1.4.1 | [Gofigga](http://www.twitch.tv/gofigga) |
| 1:50:55 | 399,355 | `1428801658` | A | v1.4.0 | [Marcin1503](https://github.com/Marcin1503) | | 1:50:55 | 399,355 | `1428801658` | A | v1.4.0 | [Marcin1503](https://github.com/Marcin1503) |
| 1:51:07 | 400,057 | `91688624` | A | v1.4.2 | [Mathias](https://mathiasbynens.be/) |
To reproduce any of these runs, set [`CUSTOM_SEED` in `main.lua`](https://github.com/kylecoburn/PokeBot/blob/27aa1dcd2cec1bbe25607fa346836f63b349ad5f/main.lua#L5) to the seed number and run the bot. To reproduce any of these runs, set [`CUSTOM_SEED` in `main.lua`](https://github.com/kylecoburn/PokeBot/blob/27aa1dcd2cec1bbe25607fa346836f63b349ad5f/main.lua#L5) to the seed number, `NIDORAN_NAME` to the matching name, and run the bot.

View File

@ -2097,7 +2097,7 @@ strategyFunctions.champion = function()
end end
end end
elseif status.tries == 500 then elseif status.tries == 500 then
Bridge.chat("beat the game in "..status.canProgress.." !") Bridge.chat("beat the game in "..status.canProgress.."!")
end end
status.tries = status.tries + 1 status.tries = status.tries + 1
elseif Memory.value("menu", "shop_current") == 252 then elseif Memory.value("menu", "shop_current") == 252 then