This is the official RRR FAQ topic for RPG Maker VX. Feel free to add your own questions and answers in this topic; but just make sure you make them in this format so either I, GoldenGriffon, Garlyle or one of the Forum Leaders can copy and paste them into this post which will serve as the base of the FAQ:
CODE
[b]Question [number of question]:[/b] *text*
[b]Answer:[/b] *text*
Note that you can ONLY post questions YOU YOURSELVES have the answer to. Any questions that you don't have the answers to go in the RPG Maker VX forum as separate topics as per the norm. The reason for this distinction from the XP FAQ is that with more people needing help VX than XP in RRR, this topic could get cluttered quickly with many unanswered questions (like the old FAQ).
So, without further ado, the FAQ itself:
(NOTE: A good thing to do BEFORE reading this FAQ is to read the
official VX FAQ by Enterbrain.)
START OF FAQ
=======================================================================
Question 1: I'm using the English translated version of RMVX. My database gets cut off like so:
Answer:QUOTE (X-Snake-X @ Jan 21 2008, 03:00 PM)

You have to install the font:
"msgothic_0.ttc"
http://uploaded.to/?id=yakek5Then it should work!
===============================================================
Question 2: How do I change the Window Skin / Title Screen / Game Over Screen / Icon Set?
Answer:QUOTE
1. Change the filename of your file to "Window" (window skin), "Title" (title screen), "GameOver" (game over screen) and "IconSet" (icon set) if you have not already. Also make sure the file format is .png.
2. Place it in the Graphics/System folder of your project folder.
3. And you're done! It should change automatically.
===============================================================
Question 3: How do I make an event only happen once/doesn't happen again whenI reenter the map?
Answer:QUOTE
Switches!
On the first page of event commands, under "Game Progression", there is a command called "Switch Operation...". Turn a switch ON, and create a new event page.
Go to the next page, and tick the condition Switch ON to whatever you set to.
Another choice: Use the "Self-Switch Operation..." command and turn it on, make a new event page for it accordingly like above. This method is only if you are using the switch only for this event.
Well, hope that helped. Try it out.
===============================================================
Question 5: How to remove the characters have a colored square behind them?
Answer: Just left-click/right-click the background when importing the image file to your project.
===============================================================
Question 6:How do I change my gameover screen or title?
Answer:QUOTE
1. Make the name of your custom title screen "Title" or your game over screen "GameOver"
2. Import it into Graphics/System.
That is it!
NOTE: This applies for ANYTHING that you want to change in Graphics/System. This includes IconSets, Tilesets and pretty much anything you find in that folder.
==========================================================
Question 7:Where is RMVX RTP folder?
Answer:QUOTE
If you didn't change its folder when you setup RTP file, it will be in:
C:\Program Files\Common Files\Enterbrain\RGSS2\RPGVX
==========================================================
Question 8: When I try to make a sign using an event with a decison button, it won't work! What am I doing wrong?
Answer:QUOTE
This is a simple priority problem. By default the event starts out with the Priority Under Character so all you have to do is change it to Same as Character and your sign should work!
==========================================================
Question 9: How do you open VX project file (Game.rvproj) that was made with the newer version of RMVX?
AnswerQUOTE
Open Game.rvproj with notepad, and change number from 1.0X to 1.00
==========================================================
Question 10: PENDING
==========================================================
Question 11: Where can I find Character set/ face set generators?
Answer:QUOTE (puppeto4)
Faceset MakerSprite GeneratorFor faceset maker,you will need to do extra work,since it require resize and some other thing.
And for character generator,it is easy enough to use,you dont need to understand japanese language to use it(that is if you got common sense

)
==========================================================
Question 12: At the installation screen, it says "Install RPG Maker VX RTP" and "Install RPG Maker VX". Is there a difference, or should I install both?
Answer: You have to install Both. "RPG Maker VX" is the program while the RTP is the initial pack that has the graphics, sounds and Etc. Be sure to install the RTP FIRST.
==========================================================
Question 13: One of my actor has a poisoned state. Outside of the battle field, after walking around for quite a while, the actor doesn't seem to die. Even though the actor's Hp is already 1, the screen continues to flashes. What's worse is that my character doesn't die, but rather stays with a constant HP of 1.
How can I make sure that the actor would be KOed outside of battle field with a poison state?Answer:QUOTE (Nmarb05 @ Mar 15 2008, 09:13 PM)

This is a easy fix.
In Script Editor Find Game_Party>>
Goto Line 272 which says
CODE
actor.hp -= 1 if actor.hp > 1 # Poison damage
Change it to
CODE
actor.hp -= 1 if actor.hp > 0 # Poison damage
You can also change that number to something higher like 100 so the poison will only apply if the hp is above 100.
Hope this helps.
==========================================================
Question 14: How do I change the default tilesets (A-E)?
Answer: First, make sure you have your own tilesets set to a size of 512x512 pixels. Then, save the tilesets as Tile[A-E] depending on what you'd like. Then, use the Resource Manager to IMPORT the specific tileset into the Graphics/System folder, thus replacing the default tileset.
==========================================================
Question 15: Is it possible to change tileset E to our own tiles?
Answer: YES. Look above.
==========================================================
Question 16: Can the tilesets be any bigger than 512x512?
Answer: NO.
==========================================================
Question 17: How do I get ___ tiles to appear on _____ tileset?
Answer: Use graphics editing software such as Graphics Gale, Adobe Photoshop or iDraw to copy and paste tiles from one tileset to another.
==========================================================
Question 18: The application itself (RPG Maker VX)does not want to open up. Here is the error I get
Error: Failed to obtain a trail serial number from the nTitles server.
What can I do to fix this?
Answer: First of all, make sure you have internet access. This might seem obvious but some people tend to miss this.
Secondly, this error usually happens because you've got an application of some sort that's blocking RPG Maker VX's access to the internet.
Try turning off your firewall (or any other programs that might be causing the problem), and see what happens.
==========================================================
Question 19: How do I seperate the monster areas into specific continents/other types of regions?
Answer: Use the "new area" function. On the left window, click on the 'world' map; right-click and select new area. Here you should be able to determine what monsters appear in that area...also, you can determine the size of the area.
==========================================================
Question 20: Is it possible to change VX's battle system to a side-view battle system?
Answer: Yes, you can use
the Animated Battlers script, re-done for VX by DerVVulfman.
==========================================================
Question 21: Is there a way to disable the in-game menu?
Answer: This must be done with events. On the third page of the Event Commands dialogue, you will see the category "System Settings" to the lower left hand side of the window. Click on "Change Menu Access" and change its operation to "disabled."
==========================================================
Question 22: How do taked screenshots ???
Answer: Read the
Rules, READ THIS BEFORE POSTING ANYTHING topic.
==========================================================
Question 23: How do you make the text appear slower? It seems to move too fast.
Answer: This is only a cheap fix, but in the message box event command type in /S[n] where n is any number between 1 and 20. 1 is fastest, 20 is slowest.
==========================================================
Question 24: I'm having various problems with variables. (Examples may include, trying to assign an actor's level to a variable, and multiplying variables).
Answer: The game_interpreter script has a bit of a mistake in it. To fix this,
These are lines 748-752 of game_interpreter.
CODE
when 3 # Item
value = $game_party.item_number($data_items[@params[4]])
actor = $game_actors[@parameters[1]]
actor = $game_actors[@params[4]]
if actor != nil
But this is how it should look like:
CODE
when 3 # Item
value = $game_party.item_number($data_items[@params[4]])
when 4 # Actor
actor = $game_actors[@params[4]]
if actor != nil
Just change that and it will work!
================================================================
QUOTE
Question 25: How do I change my starting gold?
Answer: Well you can do it with events, but with scripts you can do it with no knowledge required. Goto Game_Party in the scripts pages. Find line 26
CODE
@gold = 0
Now change 0 to anything you want and then you have your starting gold.

================================================================
Question 26: How do I get full health when I level up?
Answer: In the scripts find the page Game_Actor (not actors). Starting at line 536
CODE
#--------------------------------------------------------------------------
# * Level Up
#--------------------------------------------------------------------------
def level_up
@level += 1
for learning in self.class.learnings
learn_skill(learning.skill_id) if learning.level == @level
end
end
Now add two lines between @level += 1 and for learning in self.class.learnings
CODE
#--------------------------------------------------------------------------
# * Level Up
#--------------------------------------------------------------------------
def level_up
@level += 1
self.hp += maxhp #Add this, It gives you full HP on level up.
self.mp += maxmp #Add this, It gives you full MP on level up.
for learning in self.class.learnings
learn_skill(learning.skill_id) if learning.level == @level
end
end
================================================================
Question 27: How to I get movies/videos etc. to work with RPG Maker VX? (Especially before the title screen)
Answer: Basically it would take a lot of complicated steps (and decent scripting knowledge) to get a movie to start playing before the introduction. You'll have to wait awhile until someone's able to make a movie script that takes into account the structure of Ruby (the language RGSS, VX's scripting language, is derived from).
================================================================
END OF FAQ
Remember, if you have ideas for additional questions (but only
frequently-asked ones), as well as any better answers to these questions, post them here.