Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

> [Demo + Script] Skip Title Script v.2.0, *Updated 21/04/2008* Version 2.0!!!
woratana
post Jan 30 2008, 07:55 PM
Post #1


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




Skip Title Script
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.
Attached File  Demo_Skip_Title.zip ( 272.96K ) Number of downloads: 1612
<< Version 1.0 Demo


Script
Place it above main.
Version 2.0
Attached File  skiptitle20.txt ( 1.46K ) Number of downloads: 688


Attached File  skiptitle10.txt ( 3.85K ) Number of downloads: 380
<< 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]

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.


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   
 
Start new topic
Replies
woratana
post Mar 1 2008, 05:53 PM
Post #2


Looking for scripter to hire? PM me *O*
Group Icon

Group: +Gold Member
Posts: 1,038
Type: Scripter
RM Skill: Undisclosed




@jjgriff93

Here you go~ smile.gif

Add this above main:
CODE
#==============================================================================
# ฆ [XP] +Skip Title Script+
#------------------------------------------------------------------------------
# Version 1.0
# by Woratana [woratana@hotmail.com]
# Release Date: 03/02/2008
#
#==============================================================================

module Worale
#------------------------------------
# SETUP START LOCATION HERE!
#-----------------------------------
  MAP_ID = 2
  MAP_X = 9
  MAP_Y = 7
  MEMBERS = [1,2,3]
end

class Skip_Title
  def main
    $data_actors        = load_data("Data/Actors.rxdata")
    $data_classes       = load_data("Data/Classes.rxdata")
    $data_skills        = load_data("Data/Skills.rxdata")
    $data_items         = load_data("Data/Items.rxdata")
    $data_weapons       = load_data("Data/Weapons.rxdata")
    $data_armors        = load_data("Data/Armors.rxdata")
    $data_enemies       = load_data("Data/Enemies.rxdata")
    $data_troops        = load_data("Data/Troops.rxdata")
    $data_states        = load_data("Data/States.rxdata")
    $data_animations    = load_data("Data/Animations.rxdata")
    $data_tilesets      = load_data("Data/Tilesets.rxdata")
    $data_common_events = load_data("Data/CommonEvents.rxdata")
    $data_system        = load_data("Data/System.rxdata")
    $game_system = Game_System.new
    $game_temp          = Game_Temp.new
    $game_system        = Game_System.new
    $game_switches      = Game_Switches.new
    $game_variables     = Game_Variables.new
    $game_self_switches = Game_SelfSwitches.new
    $game_screen        = Game_Screen.new
    $game_actors        = Game_Actors.new
    $game_party         = Game_Party.new
    $game_troop         = Game_Troop.new
    $game_map           = Game_Map.new
    $game_player        = Game_Player.new
    $game_party.skip_setup_starting_members
    $game_map.setup(Worale::MAP_ID)
    $game_player.moveto(Worale::MAP_X, Worale::MAP_Y)
    $game_player.refresh
    $game_map.autoplay
    $game_map.update
    $scene = Scene_Map.new
  end
end

class Game_Party
    def skip_setup_starting_members
    @actors = []
    for i in Worale::MEMBERS
      @actors.push($game_actors[i])
    end
  end
end


To setup the script is similar to VX one, I think you will understand it~^^

The other thing is you've to go to "Main"

replace line:
CODE
$scene = Scene_Title.new

with >>
CODE
  if $BTEST
  $scene = Scene_Title.new
  else
  $scene = Skip_Title.new
  end


This will help you to not skip title when you're testing batlte from database.


__________________________
Check out my NEW blog!!!



MVP (Most Valuable Poster) Award 2008


Go to the top of the page
 
+Quote Post
   

Posts in this topic
- woratana   [Demo + Script] Skip Title Script v.2.0   Jan 30 2008, 07:55 PM
- - SeeYouAlways   Nice. After the introduction, does it return to th...   Jan 31 2008, 02:07 AM
- - Magdreamer   You mean if this will skip the Splash Screens too?   Jan 31 2008, 07:07 AM
- - woratana   You can use this to move player to map that there...   Jan 31 2008, 11:53 AM
- - Kira   Does this work for Xp too?   Jan 31 2008, 05:41 PM
- - woratana   Demo Uploaded! You can download demo of this s...   Jan 31 2008, 11:44 PM
- - Dainreth   Oh, I don't reply on this topic. As you know, ...   Feb 2 2008, 07:11 AM
- - Kira   QUOTE (woratana @ Feb 1 2008, 01:51 AM) D...   Feb 3 2008, 08:51 PM
- - woratana   Finished! Check your PM, Kira. Should I post...   Feb 3 2008, 10:15 PM
|- - korboy123   QUOTE (woratana @ Feb 3 2008, 09:15 PM) F...   Dec 19 2008, 09:52 AM
- - Nechi   Good Script!! Wor-Kun   Feb 3 2008, 10:20 PM
- - Dainreth   A question, wora. Is there any possibility to add ...   Feb 5 2008, 08:23 AM
- - woratana   You may add no member in party when game start, so...   Feb 5 2008, 04:11 PM
- - Dainreth   Ah, that's the way I should do this..thanks wo...   Feb 6 2008, 02:27 AM
|- - neclords   This script is awesome.. Hhe.. The opening befor...   Feb 6 2008, 07:47 AM
- - Dragooner   Woratana, this one is really good. I have two ques...   Feb 11 2008, 06:54 PM
- - woratana   Umh, I don't sure about how video script works...   Feb 11 2008, 07:05 PM
- - elflyfreely   I love it, really.   Feb 11 2008, 10:08 PM
- - Dragooner   I've fixed the problem with the video(taked so...   Feb 12 2008, 03:54 PM
- - Cirka88   Can you post the XP version of the script mentione...   Feb 18 2008, 05:45 PM
- - woratana   @Cirka I can't find it. You may want to ask K...   Feb 18 2008, 06:45 PM
|- - gilly   I was wondering is it possible for somebody to ...   Apr 20 2008, 11:29 AM
- - Cirka88   Ok. Thanks anyway. I'll PM Kira about it.   Feb 19 2008, 10:30 AM
- - jjgriff93   hello! does anybody know of a way or an rgss ...   Mar 1 2008, 05:32 AM
|- - jjgriff93   thankyou woratana!! That's been a real...   Mar 4 2008, 01:54 PM
- - GasparXR   Really nice script, it's exactly what I was lo...   Mar 6 2008, 07:32 PM
- - Shadoan   Ok, this is stupid but here I go. Anyone ever tho...   Mar 23 2008, 07:39 PM
- - woratana   Nice. However, Scene_Title has advantage that it...   Mar 23 2008, 08:03 PM
- - Shadoan   Thats the hard part........ Im an amature in rudy ...   Mar 24 2008, 06:12 AM
- - jjgriff93   right, I had a problem and i've got no idea ho...   Mar 26 2008, 01:53 PM
- - woratana   Show me what did you put in there. The actor ID ...   Mar 26 2008, 04:54 PM
- - sean7595   QUOTE (woratana @ Jan 30 2008, 07:09 PM) ...   Apr 2 2008, 09:21 AM
- - Twilight27   Um...when I copy/paste your script, it is pasted a...   Apr 2 2008, 10:01 AM
- - puppeto4   I guess you use IE ? Well,this only happen if you...   Apr 2 2008, 10:10 AM
- - Twilight27   Okay thanks, it works perfectly now . It was stupi...   Apr 2 2008, 11:10 AM
- - woratana   @sean7595 Commercial is game that you sell, non-co...   Apr 2 2008, 05:09 PM
- - sean7595   Thanks, i aint that smart so i didnt know what it ...   Apr 3 2008, 09:19 AM
- - jjgriff93   sorry I didn't reply sooner, but I haven't...   Apr 15 2008, 02:14 PM
- - Xirdneh   Hey Woratana, Is there a way I could change it so...   Apr 16 2008, 04:02 PM
- - puppeto4   Nope you don't need to modify anything for bot...   Apr 20 2008, 11:46 AM
- - woratana   Updated to Version 2.0!!! - Shorter c...   Apr 21 2008, 01:26 PM
- - Xirdneh   This is awesome because after I tell it where to s...   Apr 21 2008, 02:15 PM
- - woratana   Yeah, time, it make me stop scripting... Anyway...   Apr 21 2008, 04:56 PM
|- - Xirdneh   QUOTE (woratana @ Apr 21 2008, 05:10 PM) ...   Apr 21 2008, 05:31 PM
|- - jjgriff93   hi Woratana me again! I was wondering if you k...   Apr 22 2008, 11:46 AM
- - woratana   I think you can just use event command to recover ...   Apr 22 2008, 01:05 PM
|- - jjgriff93   yeah, I thought that but for some reason, it still...   Apr 22 2008, 01:10 PM
- - woratana   Then you shouldn't ask me about XP in this VX ...   Apr 22 2008, 04:30 PM
- - bojjenclon   I am getting an error in Scene_Player line 257   Jul 21 2008, 03:37 PM
- - arickertman   Ok this is a really good script for what I'm t...   Sep 20 2008, 03:04 PM
- - woratana   I think it has to do with movie script. >_>a   Sep 21 2008, 06:38 AM
|- - miget man12   Can you make it so on the Title Screen after a cer...   Sep 21 2008, 02:59 PM
- - TalesOf_Fantasy   hey wora, i'm using this script and put your n...   Feb 26 2009, 11:02 PM
- - woratana   It's possible by just teleport back to the int...   Feb 27 2009, 06:00 AM
|- - TalesOf_Fantasy   QUOTE (woratana @ Feb 27 2009, 06:00 AM) ...   Feb 28 2009, 03:36 AM
- - origo   It doesn´t work. It says: Script 'game_player...   Feb 27 2009, 07:06 AM
- - woratana   I couldn't help you if you can't be more d...   Feb 27 2009, 08:34 AM
- - woratana   Just transfer player to your intro map, TalesOf_Fa...   Mar 2 2009, 06:56 PM
- - Dragon-boy   hey i did everything but how do u select the video...   May 13 2009, 01:33 PM
- - Genshyu   Thanks.   Aug 31 2010, 10:41 AM
- - irbis   okey i do everything you say. so instead of title ...   Oct 17 2010, 04:16 AM
- - ShinGamix   nice work Don't necropost. ~Kread   Dec 29 2010, 08:33 PM
- - Cherry-Blossom   Thank you for your script. I will try and use it o...   Dec 30 2010, 07:34 AM


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Lo-Fi Version Time is now: 18th May 2013 - 06:17 PM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker