public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers
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: TSR_SmartTitle
  • Original author: TSR
  • Original date: April 18, 2022
  • Source thread: https://forums.rpgmakerweb.com/threads/tsr_smarttitle.146868/
  • Source forum path: Game Development Engines > RPG Maker Javascript Plugins > JS Plugin Releases (RMMZ)

Summary

{ "lightbox_close": "Close", "lightbox_next": "Next", "lightbox_previous": "Previous",

Archived First Post


TSR_SmartTitleIMG.png

author
TSR
Download
TSR_SmartTitle
Use plugin commands to change the Title screen music and backgrounds in game.

The title screen settings are stored in the game file, so each saved game files can have its own title music and backgrounds. When the title screen opens, it will play the music and display the backgrounds from the last saved game.

If no saved files exist, the title screen settings will refer to the data base entries.

Code:
 * Plugin commands
 * ============================================================
 *
 * Change Title Music
 * ==================
 * Use the 'Change Title Music' plugin command whenever you want to
 * change the title screen music from in game.
 *
 * The command arguments are the basic BGM object properties:
 *
 *          -name:   the name of the bgm file stored in audio/bgm folder
 *          -volume: the volume of the title screen music
 *          -pitch:  the pitch of the title music
 *          -pan:    the pan of the title music
 *
 *
 * In MV, use the command as such:
 *
 *          titlemusic name volume pitch pan
 *
 *              Example: titlemusic Theme4 100 100 0
 *
 *
 * Change Title Background 1 and 2
 * ===============================
 * Set the name of the background image stored in the
 * img/titles1 or titles2 folders.
 *
 *    MV syntax:
 *
 *        titlebg1 name
 *
 *          Example: titlebg2 Floral
 *
 *
 *
 * Script Calls
 * ============
 * The script calls equivalent of the above.
 *
 *      $gameSystem.setTitleMusic({sound object})
 *
 *      $gameSystem.setTitleBg1(fileName)
 *
 *      $gameSystem.setTitleBg2(fileName)
 *
 *
 *   Example:
 *
 *      $gameSystem.setTitleMusic(
 *         {name: 'Theme4', volume: 100, pitch: 100, pan: 0}
 *      );
 *      $gameSystem.setTitleBg1('Ruins');
 *      $gameSystem.setTitleBg2('Medieval');
 *
 *

Code:
* =======================================================================================
 * == Term of Usage ======================================================================
 * =======================================================================================
 *
 * Use in any independant RPG Maker MZ or MV projects, including commercials.
 *
 * Credit is required for using this Plugin.
 * For crediting, use 'TSR' along with one of
 * the following terms:
 *      'The Northern Frog' or 'A frog from the north'
 *
 * Do not change the Header or the Terms of usage.
 *
 * Editing of the code is allowed for your personal use.
 *
 * DO NOT REDISTRIBUTE!
 * If you want to share it, share the link to my itch.io account:
 * https://the-northern-frog.itch.io/
 *
 *

Regards

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

* Use in any independant RPG Maker MZ or MV projects, including commercials. * * Credit is required for using this Plugin. * For crediting, use 'TSR' along with one of

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#rmmz#plugin-archive

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar