Version 2.0
by Woratana
Release Date: 21/04/2008
Introduction
This script will skip the Title Screen to Map when game start,
I script this to make VX possible to make game's intro by event before Title Screen.
Features
Version 1.0
- Set Map_ID/X/Y of Location
- Set Party Members when skip Title (or) Use Default Start Members from Database
Demo
You can download demo that shows how this script works with intro made by events.
Click to view attachment << Version 1.0 Demo
Script
Place it above main.
Version 2.0
Click to view attachment
Click to view attachment << Version 1.0
Instruction
After placed script, go to Main in Script Editor and find the line:
CODE
$scene = Scene_Title.new
replace it with
CODE
$scene = Skip_Title.new
You can set start location by edit these lines:
CODE
MAP_ID = 2
START_XY = [8,7]
START_MEMBER = [1,2,3]
START_XY = [8,7]
START_MEMBER = [1,2,3]
MAP_ID = ID of Map
START_XY = [X,Y] of Start Location
START_MEMBER = [id of actor in database,id of other actor in database,...]
^ For example, START_MEMBER = [2,4,5,8] will add the actors id 2,4,5,8 from database in the party.
If you want to use Start Party Members that you set in database, use START_MEMBER = 0
Author's Notes
Free for use in your non-commercial work if credit included. If your project is commercial, please contact me.
Please do not redistribute this script without permission.
And don't post this script out of http://rpgrevolution.com/ without permission.
