This topic will list questions having to do with RMVX. The listing will be updated about 1 time a week. This topic will be closed to prevent Spam and Questions from cluttering it. The listings will not be in alphabetical order, they will be in Categories.
Cost of game at this time (Dec 31st, 2011): US$59.99 / GBP 39.1296
Official RMVX Tutorials/Walthrough by Enterbrain. Requires a PDF Reader program (which can be downloaded for free). For Beginners, thorough walk-through includes events/switches and dungeon/maze-making. Updates every Friday according to the website. 20 lessons so far. RRR-Member (Kelsper) made Walkthrough PDF: Contains over 100 pages of instructions. There are too many sections to mention what it covers, take that as the depth of the walkthrough. Very, very well made.
Go to Data Base, system tab, and you should find the initial party box.
How do I change my starting gold?
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.
How do I get full health when I level up?
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
How do I change my game's Name?
Tools, database, system and there it says "Game Title"
How do I disable Saving in the field/towns?
Use an Event:
It seems that more and more games have voice acting so I would love to know how they do it, hopefully someone on here can help me? ~DonyaClaudia
You need a voice recording program. There are free ones you can download, just google for one. Use it to save the sound as a sound file, and then upload it into the game as a SE (I think)~Xeyla
How do I change the name of a skill for a class?
Check the box circled in red, and type in the name for that skill type.
This post has been edited by Xeyla: Aug 17 2011, 02:23 PM
__________________________
QUOTE (Albino Parakeet @ Apr 1 2011, 05:46 PM)
i need to know exactly how to put a penis inside someone's butt. do you have the technical knowledge to tell me how?
QUOTE (Albino Parakeet @ Apr 2 2011, 01:20 PM)
QUOTE (Shadyone @ Apr 2 2011, 06:29 AM)
I see the keet likes anal.
im trying to get into it but people aren't answering my question