Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.
Hi can anyone tell me how to make a pokemon talk? For example the Pidgeot in Saffron City. Please tell me how to do this in the scripting program PKSVUI and in pokemon firered
I recommend using XSE 1.11 rather than PKSVUI. It can be hard to get used to at first, but most tutorials are written for XSE, and it will be easier to understand.
I believe the Pidgeot's script is written something like this:
You could just do something simpler and make it like this:
Spoiler:
#dynamic 0x800000
#org @start
lock
faceplayer
cry 0x12 0x0 (12 is Pidgeot's PokeDex number in hex)
msgbox @talk 0x6
release
end
#org @talk
= *more pidgeot noises*
Then you would just assign the script's offset (in this case, 800000) to the person event in AM that you want to display this text and cry.
Hopefully that wasn't too hard to understand.