プラグインのご利用ありがとうございます。
用語辞典プラグインの仕様により、用語アイテムとして作成した隠しアイテムは、ゲーム中には存在しないメタ的なアイテムとして扱うことになっているのでプレイヤーに認識されず、選択画面にも表示されなくなります。
解消するには、1573行目付近にある以下の処理をコメントアウトする必要があります。
コードを直接編集するのでやや技術が必要になります。
コメントアウト前
コード: 全て選択
var _Window_EventItem_includes = Window_EventItem.prototype.includes;
Window_EventItem.prototype.includes = function(item) {
return _Window_EventItem_includes.apply(this, arguments) && !$gameParty.isGlossaryHiddenItem(item);
};
コード: 全て選択
// var _Window_EventItem_includes = Window_EventItem.prototype.includes;
// Window_EventItem.prototype.includes = function(item) {
// return _Window_EventItem_includes.apply(this, arguments) && !$gameParty.isGlossaryHiddenItem(item);
// };