
PANDA 乗り物の乗降時等にイベントを実行 - PANDA_VehicleCommon.js
シェア用テキスト:
▼PANDA 乗り物の乗降時等にイベントを実行(panda様作) - PANDA_VehicleCommon.js
https://plugin.fungamemake.com/archives/31846
乗り物への乗降開始時・完了時・下船不可時にコモンイベントを実行します。
ふりがな:のりもののじょうこうじなどにいべんとをじっこう
機能概要: 乗り物への乗降開始時・完了時・下船不可時にコモンイベントを実行します。
利用規約(ライセンス): MITライセンス
作者:panda
作者サイト:http://www.werepanda.jp/
解説ページ:http://www.werepanda.jp/blog/20240324161555.html
ファイル名:PANDA_VehicleCommon.js
プラグインのヘルプ:
/*:ja * @target MV MZ * @plugindesc 乗り物への乗降開始時・完了時・下船不可時にコモンイベントを実行します。 * @author panda(werepanda.jp) * @url http://www.werepanda.jp/blog/20240324161555.html * * @help それぞれの乗り物への以下のタイミングで指定したコモンイベントを実行します。 * - 乗り込みを開始した時 * - 乗り込みが完了した時 * - 下船を開始した時 * - 下船が完了した時 * - 乗り物から下りられない時 * * ■ 利用規約 * このプラグインはMITライセンスで配布されます。 * ご自由にお使いください。 * https://opensource.org/licenses/mit-license.php * * ■ 参考 * VehicleCommon.js by Yana様 * * @param GetOnBoatCommonID * @text 小型船乗込開始時コモンイベント * @desc 小型船に乗り込みを開始した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GetOnShipCommonID * @text 大型船乗込開始時コモンイベント * @desc 大型船に乗り込みを開始した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GetOnAirshipCommonID * @text 飛行船乗込開始時コモンイベント * @desc 飛行船に乗り込みを開始した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GotOnBoatCommonID * @text 小型船乗込完了時コモンイベント * @desc 小型船に乗り込みを完了した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GotOnShipCommonID * @text 大型船乗込完了時コモンイベント * @desc 大型船に乗り込みを完了した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GotOnAirshipCommonID * @text 飛行船乗込完了時コモンイベント * @desc 飛行船に乗り込みを完了した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GetOffBoatCommonID * @text 小型船下船開始時コモンイベント * @desc 小型船から下船を開始した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GetOffShipCommonID * @text 大型船下船開始時コモンイベント * @desc 大型船から下船を開始した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GetOffAirshipCommonID * @text 飛行船下船開始時コモンイベント * @desc 飛行船から下船を開始した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GotOffBoatCommonID * @text 小型船下船完了時コモンイベント * @desc 小型船から下船を完了した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GotOffShipCommonID * @text 大型船下船完了時コモンイベント * @desc 大型船から下船を完了した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param GotOffAirshipCommonID * @text 飛行船下船完了時コモンイベント * @desc 飛行船から下船を完了した時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param LandNGBoatCommonID * @text 小型船下船不可時コモンイベント * @desc 小型船から下りられない時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param LandNGShipCommonID * @text 大型船下船不可時コモンイベント * @desc 大型船から下りられない時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * * @param LandNGAirshipCommonID * @text 飛行船下船不可時コモンイベント * @desc 飛行船から下りられない時に実行するコモンイベントのIDを指定します。 * @type common_event * @default 0 * */
