当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
DarkPlasma 戦闘中アイテムリスト表示制御 - DarkPlasma_BattleItemVisibility.js
シェア用テキスト:
▼DarkPlasma 戦闘中アイテムリスト表示制御(DarkPlasma様作) - DarkPlasma_BattleItemVisibility.js
https://plugin-mz.fungamemake.com/archives/800
戦闘中のアイテムリストに表示するものを制御する
ふりがな:せんとうちゅうあいてむりすとひょうじせいぎょ
機能概要: 戦闘中のアイテムリストに表示するものを制御する
利用規約(ライセンス): MITライセンス
作者:DarkPlasma
作者サイト:https://elleonard.github.io/DarkPlasma-MZ-Plugins/index.html
解説ページ:https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree…
ダウンロードページ:https://raw.githubusercontent.com/elleonard/DarkPlasma-…
ファイル名:DarkPlasma_BattleItemVisibility.js
プラグインのヘルプ:
// DarkPlasma_BattleItemVisibility 2.0.1 // Copyright (c) 2020 DarkPlasma // This software is released under the MIT license. // http://opensource.org/licenses/mit-license.php /** * 2020/09/11 2.0.1 戦闘中にアイテム欄を開くとエラーが出る不具合を修正 * 2020/09/08 2.0.0 パラメータ名を変更 * 2020/08/27 1.0.0 MZ版公開 */ /*:ja * @plugindesc 戦闘中のアイテムリストに表示するものを制御する * @author DarkPlasma * @license MIT * * @target MZ * @url https://github.com/elleonard/RPGtkoolMZ-Plugins * * @param showOnlyMenuItems * @desc メニュー画面のみ使用可能なアイテムを表示します * @text メニュー画面アイテムを表示 * @type boolean * @default false * * @param showUnusableItems * @desc 使用不可アイテムを表示します * @text 使用不可アイテムを表示 * @type boolean * @default false * * @param showWeapon * @desc 武器を表示します * @text 武器を表示 * @type boolean * @default false * * @param showArmors * @desc 防具を表示します * @text 防具を表示 * @type boolean * @default false * * @param showImportantItems * @desc 大事なものを表示します * @text 大事なものを表示 * @type boolean * @default false * * @param showUsableSecretItems * @desc 戦闘中に使用可能な隠しアイテムを表示します * @text 使用可能隠しアイテムを表示 * @type boolean * @default false * * @param showUnusableSecretItemsA * @desc 戦闘中に使用不可能な隠しアイテムAを表示します * @text 使用不可隠しアイテムAを表示 * @type boolean * @default false * * @param showUnusableSecretItemsB * @desc 戦闘中に使用不可能な隠しアイテムBを表示します * @text 使用不可隠しアイテムBを表示 * @type boolean * @default false * * @help * 戦闘中のアイテムコマンドで表示されるアイテム一覧に表示するアイテムを設定します。 * プラグインパラメータで種別ごとに表示するものを設定できる他、 * アイテムのメモ欄に以下のように入力したアイテムを表示します。 * * <VisibleInBattle> */