ovate

tale
Regular
Joined
Dec 16, 2016
Messages
1,054
Reaction score
1,804
First Language
English
Primarily Uses
N/A
NewGameSe - Version 1.1.0 (2018/11/23)

Creator name:
Triacontane

Overview

Plays a certain sound effect when New Game is selected.

Features
- You can select a sound effect through a parameter
- Settings for adjusting: volume, pitch, and pan
- Optional sound effect for Continue

ngse.png


Credit and Thanks:
Triacontane

Terms of Use-
Free for commercial and non-commercial use.

License -
MIT License: http://opensource.org/licenses/mit-license.php

Dropbox link: https://www.dropbox.com/s/7x2w38f1so903i8/NewGameSe.js?dl=1

Code:
/*=============================================================================
 NewGameSe.js
----------------------------------------------------------------------------
 (C)2018 Triacontane
 This software is released under the MIT License.
 http://opensource.org/licenses/mit-license.php
----------------------------------------------------------------------------
 Version
 1.1.0 2018/11/23 Optional sound effect for Continue
 1.0.0 2018/08/03 First release
----------------------------------------------------------------------------
 [Blog]   : https://triacontane.blogspot.jp/
 [Twitter]: https://twitter.com/triacontane/
 [GitHub] : https://github.com/triacontane/
=============================================================================*/

/*:
 * @plugindesc NewGameSePlugin
 * @author triacontane
 *
 * @param soundEffect
 * @desc Sound effect that plays when New Game is selected
 * @default
 * @type struct<AudioSe>
 *
 * @param includeContinue
 * @desc Same sound effect from New Game that plays when Continue is selected
 * @default false
 * @type boolean
 *
 * @help NewGameSe.js
 *
 * Plays a certain sound effect when New Game is selected.
 *
 * This plugin is released under the MIT License.
 */
/*:ja
 * @plugindesc ニューゲーム専用効果音プラグイン
 * @author トリアコンタン
 *
 * @param soundEffect
 * @text 効果音
 * @desc ニューゲーム選択時の効果音情報です。
 * @default
 * @type struct<AudioSe>
 *
 * @param includeContinue
 * @text コンティニューも含む
 * @desc コンティニュー、オプション選択時も専用効果音を演奏します。
 * @default false
 * @type boolean
 *
 * @help NewGameSe.js
 *
 * ニューゲーム選択時のみ専用の効果音を演奏します。
 * 
 * このプラグインにはプラグインコマンドはありません。
 *
 * 利用規約:
 *  作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
 *  についても制限はありません。
 *  このプラグインはもうあなたのものです。
 */

/*~struct~AudioSe:
 * @param name
 * @desc Audio se file
 * @default
 * @require 1
 * @dir audio/se/
 * @type file
 *
 * @param volume
 * @desc Set volume
 * @default 90
 * @type number
 * @min 0
 * @max 100
 *
 * @param pitch
 * @desc Set pitch
 * @default 100
 * @type number
 * @min 50
 * @max 150
 *
 * @param pan
 * @desc Set pan
 * @default 0
 * @type number
 * @min -100
 * @max 100
 */

(function() {
    'use strict';

    /**
     * Create plugin parameter. param[paramName] ex. param.commandPrefix
     * @param pluginName plugin name(EncounterSwitchConditions)
     * @returns {Object} Created parameter
     */
    var createPluginParameter = function(pluginName) {
        var paramReplacer = function(key, value) {
            if (value === 'null') {
                return value;
            }
            if (value[0] === '"' && value[value.length - 1] === '"') {
                return value;
            }
            try {
                return JSON.parse(value);
            } catch (e) {
                return value;
            }
        };
        var parameter     = JSON.parse(JSON.stringify(PluginManager.parameters(pluginName), paramReplacer));
        PluginManager.setParameters(pluginName, parameter);
        return parameter;
    };

    var param = createPluginParameter('NewGameSe');

    var _Window_TitleCommand_playOkSound = Window_TitleCommand.prototype.playOkSound;
    Window_TitleCommand.prototype.playOkSound = function() {
        if (param.soundEffect && this.isNeedTitleSound()) {
            AudioManager.playStaticSe(param.soundEffect);
        } else {
            _Window_TitleCommand_playOkSound.apply(this, arguments);
        }
    };

    Window_TitleCommand.prototype.isNeedTitleSound = function() {
        return this.currentSymbol() === 'newGame' || param.includeContinue
    };
})();

Edit: (2018/11/23) Triacontane added optional sound effect for Continue parameter
 
Last edited:

ovate

tale
Regular
Joined
Dec 16, 2016
Messages
1,054
Reaction score
1,804
First Language
English
Primarily Uses
N/A
Minor update: Version 1.1.0 (2018/11/23)
Triacontane added a parameter for "includeContinue"
@desc Same sound effect from New Game that plays when Continue is selected
 

Oscar92player

Regular
Regular
Joined
Jul 26, 2012
Messages
564
Reaction score
268
First Language
Spanish
Primarily Uses
RMMV
How did I miss this? I was searching for a feature like this in order to make a great introduction for the game.

I will try it later!
 
Last edited:

Latest Threads

Latest Posts

Latest Profile Posts

Is it me or are steam reviews getting more and more useless? I'm finding a lot of games now the reviews are like great plot well developed characters...and the truth is far from that.

Or the 'plot' is the AO patch.

Or both.
Rare 2nd Status Post: I do everything the most complicated way possible at first. I was just experimenting with fading in a picture by using the Show Picture command with a tiny Wait and changing the Opacity. When it finally looked right, I realized I could use a Loop & script to condense everything down to just a couple lines in the Event instead of hundreds of lines. DOH! But hey, I learned something new.
S961pus.gif


Me every time I leave my 11am class. I'm not a morning person.
Curiosity kills cats. Not people. Remain ever curious!
"You dont have to negotiate if they dont have a hostage" :kaopride:
sketch1701194888871.png

Forum statistics

Threads
136,554
Messages
1,267,470
Members
180,230
Latest member
Paulc
Top