AHMED_SH'S PROFILE
Ahmed_SH
0
Search
Filter
Wasteland tiles
[RMVX ACE] The main menu with my native language is causing a problem
author=karins_soulkeeper
Huh, I never noticed that there was a character limit...
Anyway, you can try to manually enter it in Window_TitleCommand. Look for it in the Script Editor (F11). Then at lines 34-38, you'll find this:def make_command_list add_command(Vocab::new_game, :new_game) add_command(Vocab::continue, :continue, continue_enabled) add_command(Vocab::shutdown, :shutdown) end
Change it into something like this:def make_command_list add_command("Your New Newgame Text Here", :new_game) #Vocab::new_game add_command("Your New Continue Text Here", :continue, continue_enabled) #Vocab::continue add_command("Your New Shutdown Text Here", :shutdown) #Vocab::Shutdown end
It should now work. The comments (green text) are there in case you want to revert it to the default. Just keep in mind that if your text is too long, it might not fit in the window anymore.
If anything's unclear, feel free to ask.
thank you very much sir it worked perfectly :D
greetings from Saudi Arabia
[RMVX ACE] The main menu with my native language is causing a problem
hello everyone
first of all I am Arabic so excuse my bad English
I am working on my first project in VX ace , i wanted to make my game fully Arabic
until i faced this problem
when i am trying to change the menu labels from "new game" and "Shut down"
to arabic "لعبة جديدة" and "خروج" from the data base like this :
it shows me this :
i tried to change the font to Tahoma (which supports Arabic) but it does not allow
me to put the whole text in arabic , here what happens :
there are missing letters "ل"
and when i try to add more letters in the database it does not allow me to do so
as if you are trying to type in a full text box ( it plays that sound to tell you that you cannot add more letters ) even though the word is only 10 letters long !:(
can anyone help me ? i don't mind if it's a script or anything as long as it can
make the game works
and i can't remove letter because it will change the meaning of the word
thank you very much for your help and i am waiting for your replies
PS : if there is a script that allows you to change the titles without going to the database i think that would solve the problem ,, i am still new to this so yeah ..
first of all I am Arabic so excuse my bad English
I am working on my first project in VX ace , i wanted to make my game fully Arabic
until i faced this problem
when i am trying to change the menu labels from "new game" and "Shut down"
to arabic "لعبة جديدة" and "خروج" from the data base like this :
it shows me this :
i tried to change the font to Tahoma (which supports Arabic) but it does not allow
me to put the whole text in arabic , here what happens :
there are missing letters "ل"
and when i try to add more letters in the database it does not allow me to do so
as if you are trying to type in a full text box ( it plays that sound to tell you that you cannot add more letters ) even though the word is only 10 letters long !:(
can anyone help me ? i don't mind if it's a script or anything as long as it can
make the game works
and i can't remove letter because it will change the meaning of the word
thank you very much for your help and i am waiting for your replies
PS : if there is a script that allows you to change the titles without going to the database i think that would solve the problem ,, i am still new to this so yeah ..