• 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.
Resource icon

Resource Instant Nature Change Command with displayed Nature Effect! 1.69

SuperSpyroDragon64

Cooltrainer
Member
Joined
Apr 20, 2022
Posts
165
SuperSpyroDragon64 submitted a new resource:

Instant Nature Change Command with displayed Nature Effect! - Great for NPCs, Key Items, Phone NPCs, even Menu Options!

This code will open a menu with all the Pokemon in your party, allow you to select a Pokemon in your party, show you a list of all Natures in your game with their positive/negative effect displayed, and allow the player to select a nature to instantly apply to his Pokemon.

No Mints, no Price, no immersion-breaking shenanigans, no "my nature is x but a mint overwrites some of it to y". This Nature Changer... It just works.

Simply copypaste the following code anywhere you want into your...

Read more about this resource...
 

Dew Genlok

Rookie
Member
Joined
Nov 13, 2024
Posts
3
Hello!

Thanks a lot for this very nice tool =)

I followed your instructions, and at first, I had this error :

Exception: NoMethodError
Message: undefined method `party' for nil:NilClass

I was able to fix it by modifying the 4th line of your script, and replacing "Trainer" by "player" (I use another script where I call the party, and there I use "player.party" and not "Trainer.party", hence my idea that this could be the cause of the problem)

$Trainer.party.each do |pokemon|

Has to become ==>

$player.party.each do |pokemon|

Now I don't get the error anymore, and it works perfectly, not sure why, but I wanted to let you and other potential users know =)

Thanks again for your work!
 
Back
Top