Jump to content

Using batch editor


rafikimcfly

Recommended Posts

I'm fairly familiar with the batch editor, but I have a question about changing multiple nicknames at once. I am currently working on a Black save file and my boxes are full of all fully evolved Pokemon. What I'm trying to do is make it so they all have unique nicknames but I'm wondering if there is a faster way to do it than one at a time. The way I'm currently going about it is with this operation

 

=Box=1

=Slot=3

.Nickname=John

 

and just changing the box and slot and nickname one at a time, but looking to see if multiple can be done in a list of some sort?

 

 

 

Thanks in advance!

image.png

Link to comment
Share on other sites

If you want them all to have unique nicknames, then no, there isn't a way to do it "all at once". Even writing a batch command that sets each nickname in sequence would take roughly as long as naming them all by hand, but if you did want to do that, you can sequence commands by adding an extra line and ; in between. Example below:

=Box=1
=Slot=3
.Nickname=John
;
=Box=1
=Slot=4
.Nickname=Steve
;
=Box=1
=Slot=5
.Nickname=Mark
  • Thanks 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...