Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

> RMVX Frequent Answers and Questions [FAQ], Includes link to buy game. Updated 3-4-2012
Xeyla
post Jun 20 2010, 12:19 PM
Post #1


Keeper of the RMVX FAQ
Group Icon

Group: Revolutionary
Posts: 706
Type: Mapper
RM Skill: Intermediate




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.


Click to buy->www.rpgmakerweb.com

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.

RPG Maker specific google search page: this page searches all RPG Maker websites, in google fashion.
General Questions about the Program Itself
Events/Switches/Variables
Tileset/Iconset Information
Graphical Questions (battlers/character sprites/title screen, etc)
Battle Systems Information ~empty right now.
Database Questions
Mapping Tips/Tricks
Pokemon Items/Events/Questions
Call Script Questions
Resource Links Here (generators, tilesets, music, etc...)
RMVX Script Listings (script requests/support also)

Yanfly's new blog at Wordpress.

This post has been edited by Xeyla: Mar 9 2012, 03:39 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
Go to the top of the page
 
+Quote Post
   
 
Start new topic
Replies
Xeyla
post Jun 22 2010, 04:30 PM
Post #2


Keeper of the RMVX FAQ
Group Icon

Group: Revolutionary
Posts: 706
Type: Mapper
RM Skill: Intermediate




Database Questions

Link: What are the Actor class gain/Skill gain script calls?
Link: What are the element and state efficiencies and how do I use them?
Link: What is a Map ID, and where do I find it?
Link: How do I keep the actor's custom name from reverting back to the default name? ~Xenoyia
Link: Is there any way to have a skill's accuracy directly linked to that of an equipped weapon? ~darkace77450
Link: Handling Telepathy, Trying to get a player to read minds.
Link: Can anyone explain how states efficiency work?
Link: Is there a way to change the Maximum Item Cap?
Link: Is there some way to break the 20 picture limit? I want to be able to show more then 20.
Link: Some of my characters' spells are being blocked by Silence, others aren't. Why?
Link: How can I change the speed of the airship if I think it is too fast?
Link: Where can I find an area in my database that actually manipulates the different percentages of the elemental attributes or add new elements?
How do I change the starting party?
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
Go to the top of the page
 
+Quote Post
   



Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Lo-Fi Version Time is now: 21st May 2013 - 07:40 AM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker