• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • Apologies if you've had troubles connecting to the site, you may need a VPN to access it. Staff are also facing issues connecting, so if it's urgent please message Cat on-site or through Discord directly.
  • Hey Guest, staff applications are open! If you are interested in becoming a forum staff member and/or Discord staff member, please apply through this Google Form before April 2! You can also message Cat with any questions.
Resource icon

Resource How to force 31 iv's for every pokemon that the player receives! 1.0.0

Asforcia

Novice
Member
Joined
Feb 22, 2022
Posts
13
Asforcia submitted a new resource:

How to force 31 iv's for every pokemon that the player receives! - A guide on how to force 31 iv's for every pokemon the player receives

First things first, scroll till you find the Pokemon.rb file in the script editor / look for 014_Pokemon folder and click on 001_Pokemon file

then find:
Ruby:
Expand Collapse Copy
GameData::Stat.each_main do |s|
      @iv[s.id]       = rand(IV_STAT_LIMIT + 1)
      @ev[s.id]       = 0
    end

and replace

Ruby:
Expand Collapse Copy
      @iv[s.id]       = rand(IV_STAT_LIMIT + 1)

with

Ruby:
Expand Collapse Copy
@iv[s.id]       = 31

and that's pretty much it, every pokemon the player receives will now always have...

Read more about this resource...
 

Tauxins

Aspiring Game Maker
Member
Joined
Jan 24, 2022
Posts
19
How would you also force maximum EVs for every Pokémon?
 
Back
Top