pokefreak890
The One that will make everything great
- 853
- Posts
- 10
- Years
- Seen May 18, 2023
i wonder if someone can get it to be compatabile with my 1460 base or my second version being 1020 for stability purposes
// min, max, species, species
writeWord(dataOffset + i * 4 + 2, pokedexToInternal[enc.pokemon.number]);
// min, max, species, species
writeWord(dataOffset + i * 4, enc.level);
writeWord(dataOffset + i * 4 + 1, enc.maxLevel);
writeWord(dataOffset + i * 4 + 2, pokedexToInternal[enc.pokemon.number]);
Just made it so you can change the Force Fully Evolved and Percentage Level Modifier trainer pokemon settings without randomizing the trainer Pokemon. Will upload the source changes either later today or tomorrow.
Unfortunately, trying to figure out how to get window builder for eclipse is a pain so making a percentage level modifier for wild pokemon is going to take a little while.
Edit: Here's a diff. https://files.catbox.moe/7ixazt.txt
If I use the trainer pokemon Percentage Level Modifier to also affect wild Pokemon, would anyone be interested in the diff?
While changing the wild pokemon levels, I discovered that Gen3RomHandler doesn't write the encounter levels, only the species.
Current:
Fixed:Code:// min, max, species, species writeWord(dataOffset + i * 4 + 2, pokedexToInternal[enc.pokemon.number]);
Code:// min, max, species, species writeWord(dataOffset + i * 4, enc.level); writeWord(dataOffset + i * 4 + 1, enc.maxLevel); writeWord(dataOffset + i * 4 + 2, pokedexToInternal[enc.pokemon.number]);
Has anyone made a shiny probability modifier for this?
I know I am coming to this post a little late but this option is exactly what I was looking for! When I saw the level percentage modifier on the UPRandomizer I was really excited. I could give almost every pokemon game a "hardmode" now, but was sad to see that you had to randomize trainer pokemon in order to use it. If you found a workaround, could you tell me how to apply it. I don't really know anything about changing code, but if there is a way to explain it in a simple process I would greatly appreciate it!