public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

VXACESkip Title Script

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: Skip Title Script
  • Original author: mudkipi
  • Original date: December 28, 2020
  • Source thread: https://forums.rpgmakerweb.com/threads/skip-title-script.131517/
  • Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSS3 Scripts (RMVX Ace)

Summary

This is a simple script that allows you to skip to the starting level. Useful for games that don't need the default title. Github Res Copy this code and replace the code in Scenes > Scene_Title. This code is under the Apache License.

Archived First Post

This is a simple script that allows you to skip to the starting level. Useful for games that don't need the default title.

Github Res

Copy this code and replace the code in Scenes > Scene_Title.

This code is under the Apache License.

Ruby:
class Scene_Title < Scene_Base
  def start
    super
    DataManager.setup_new_game
    SceneManager.goto(Scene_Map)
  end
end

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

License / Terms Note

This code is under the Apache License. Ruby: class Scene_Title < Scene_Base def start

Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#039#rgss3#script-archive

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar