Crimexx 13 Posted January 12, 2012 (edited) Hello All! I was mad cause my name input processing was in Japanese. So I went through the Game System scripts and stumbled across Window_NameInput and made a quick switch from Japan 1, Japan2, and Japan3, to Latin1 and Latin2. I know its easy to do but some may have no scripting knowledge at all, I have very basic Scripting knowledge. Here's the Fix: class Window_NameInput < Window_Selectable def table return [LATIN1, LATIN2] end end Instructions: 1.Copy the Script located in the Code Box 2. Post it below materials and above main, Thanks! P.S. - If you have a Japanese copy or trial this is useful for changing an actors name in-game. Also, This is my first time contributing to the RMVXACE Community, and my first script edit. So go easy on the flamez Edit: Thanks Mr. Bubbles for the help Edited January 13, 2012 by Crimexx 2 Share this post Link to post Share on other sites
Rosenblack 79 Posted January 12, 2012 you should put your code in code tags as well as the spoiler Share this post Link to post Share on other sites
Crimexx 13 Posted January 12, 2012 Ok ill do that right now Share this post Link to post Share on other sites
Rosenblack 79 Posted January 12, 2012 Sweet, now it looks much better. Share this post Link to post Share on other sites
Mr. Bubble 117 Posted January 13, 2012 You don't need to repost the entire default script for this. If you only want to use the Latin table of characters while ignoring the Japanese table, this is all you need. class Window_NameInput < Window_Selectable def table return [LATIN1, LATIN2] end end 1 Share this post Link to post Share on other sites
Crimexx 13 Posted January 13, 2012 (edited) You don't need to repost the entire default script for this. If you only want to use the Latin table of characters while ignoring the Japanese table, this is all you need. class Window_NameInput < Window_Selectable def table return [LATIN1, LATIN2] end end Well again for those unexperienced with scripting may want the whole script and I updated it thanks for the suggestion. I will post both. Credit goes to you Edited January 13, 2012 by Crimexx Share this post Link to post Share on other sites
Mr. Bubble 117 Posted January 13, 2012 Well again for those unexperienced with scripting may want the whole file and I updated it thanks for the suggestion. I will post both. Credit goes to you It's not recommended to change the default scripts directly even for small edits like this unless you know what you're doing (and most general users don't) The snippet I posted is meant to be placed in the Materials section. Thanks, but I don't need credit. Share this post Link to post Share on other sites
Crimexx 13 Posted January 13, 2012 Well again for those unexperienced with scripting may want the whole file and I updated it thanks for the suggestion. I will post both. Credit goes to you It's not recommended to change the default scripts directly even for small edits like this unless you know what you're doing (and most general users don't) The snippet I posted is meant to be placed in the Materials section. Thanks, but I don't need credit. Ill remove default script edit Share this post Link to post Share on other sites