The RPG Maker Resource Kit

RMRK RPG Maker Creation => Requests => Script Request => Topic started by: VirusChris on November 08, 2014, 08:14:01 AM

Title: [XP] Random Name Generator request
Post by: VirusChris on November 08, 2014, 08:14:01 AM
Hey there, been a long time since I last came to this site (barely even recognized it), I was wondering if it were possible if someone could make a script that allow the player when the "Name Input Progressing" window is prompt and the player can change the Actor's name and instead of picking the letters to make the new name I was wondering if it were possible to add in a "Random Name" option to the existing "Name Input Progressing" event.

I've googled it, but unfortunately my search results end up with RPG Maker VX/VX Ace scripts which I have currently no interest to use them.

Does anyone know if one currently exist and is compatible with the AMS script? Or can someone create a script for me? Please and thank you!
Title: Re: [XP] Random Name Generator request
Post by: Zexion on November 08, 2014, 02:28:21 PM
Can be done in events.
important code is :
Code: [Select]
actor = $game_actors[1]
actor.name = "ruby"
Example:
Spoiler for:
(https://rmrk.net/proxy.php?request=http%3A%2F%2Fpuu.sh%2FcIayh%2Fc6fdea078e.png&hash=d69a880e4f66c60f91776d51b406feeac1d13372)
You would have to have a choice box to get the effect you desire though.