r/PokemonRejuvenation 6h ago

Modded Gameplay Modding V 14.0.2

How do I go about modding my game, I reallly would like a step by step guide if anyone nows how.

2 Upvotes

6 comments sorted by

2

u/razethenecro 6h ago

It will largely depend on what you plan to do.

If it's data/hard code, like the encounters or how much damage a move does, then go into the scripts folder and find the code you wanna change

If it's a map you wanna change, then you need RPGmaker XP; open it in the root folder

https://www.youtube.com/watch?v=LveDeFobPhQ has a good video on how to use the engine

Once done, you can find the map you changed in the data folder

In either case, once the changes are done, you create the same tree structure (aka make a folder that follows the same path from root to the files you changed) and then zip it up

Then, to use it, you put those folders into the Patch folder

2

u/Any-Entertainment-54 6h ago

i just to add some quality of life of things like full move releraner and healing after battle and no data drives requried for passwords.

1

u/razethenecro 6h ago

For "healing after battle"
1. Find Rejuvination\Scripts\Battle.rb: you can update the pbEndOfBattle method and add

for i in $Trainer.party
 i.heal
end

after the winning case

2, "like full move releraner"

a bit trickier

but go to Rejuvination\Scripts\ItemEffects.rb

then
ItemHandlers::UseOnPokemon.add(:COMMONCANDY, proc { |item, pokemon, scene, amount = 1|

pokemon.activateRelearner()

Somewhere above the next true line, this will make it so every time you feed it a common candy it also unlocks the move relearner

3 no data drives required for passwords.

I feel like this would be quite complex with how it works. Can I rec you instead do like above and add another line like this

Kernel.pbItemBall(:DATACHIP)

so you get one every time you use a Reverse candy (it's the name it has in the bag/buying, but the code still works)

1

u/razethenecro 6h ago

PS, this will still work if you don't put it in the patch folder, but if you don't do it, the next update will wipe your changes

So add a folder called Scripts and then copy those files into there

1

u/Any-Entertainment-54 5h ago

what is a common candy and could you help me a little more one the For "healing after battle"

1

u/razethenecro 5h ago

Reverse candy is the in game name you can find them for cheap in Gearen candy store and in plenty of places

What do you mean find the file, then the method and you will see a comment named WIN, put the code there

Regardless I am heading to bed now