赞 | 153 |
VIP | 10 |
好人卡 | 39 |
积分 | 93 |
经验 | 146191 |
最后登录 | 2024-5-6 |
在线时间 | 2504 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 9280
- 在线时间
- 2504 小时
- 注册时间
- 2011-5-20
- 帖子
- 15389
|
搜索NewItemScene.js这个脚本文件里面是- //=============================================================================
- // NewItemScene.js
- //=============================================================================
- /*:
- * @plugindesc item scene that divides armors by shield/others
- * @author Sasuke KANNAZUKI
- *
- * @help This plugin does not provide plugin commands.
- *
- * @param ShieldName
- * @desc Shield Name
- * @default Shields
- *
- * @param OtherArmorName
- * @desc Other Armor Name
- * @default Armors
- *
- */
- /*:ja
- * @plugindesc 盾とその他防具を分けて表示するアイテムメニュー
- * @author 神無月サスケ
- *
- * @help このプラグインにはプラグインコマンドはありません。
- *
- * @param ShieldName
- * @desc 盾の名前
- * @default 盾
- *
- * @param OtherArmorName
- * @desc それ以外の防具の名前
- * @default 鎧など
- *
- */
- (function() {
- var parameters = PluginManager.parameters('NewItemScene');
- var ShieldName = parameters['ShieldName'] || 'Shields';
- var OtherArmorName = parameters['OtherArmorName'] || 'Armors';
- Window_ItemCategory.prototype.maxCols = function() {
- return 5;
- };
- Window_ItemCategory.prototype.makeCommandList = function() {
- this.addCommand(TextManager.item, 'item');
- this.addCommand(TextManager.weapon, 'weapon');
- this.addCommand(ShieldName, 'shield');
- this.addCommand(OtherArmorName, 'armor');
- this.addCommand(TextManager.keyItem, 'keyItem');
- };
- Window_ItemList.prototype.includes = function(item) {
- switch (this._category) {
- case 'item':
- return DataManager.isItem(item) && item.itypeId === 1;
- case 'weapon':
- return DataManager.isWeapon(item);
- case 'shield':
- return DataManager.isArmor(item) && item.etypeId === 2;
- case 'armor':
- return DataManager.isArmor(item) && item.etypeId !== 2;
- case 'keyItem':
- return DataManager.isItem(item) && item.itypeId === 2;
- default:
- return false;
- }
- };
复制代码 之后的话···- Window_ItemCategory.prototype.makeCommandList = function() {
- return DataManager.isItem(item) && item.itypeId === 1;
- return DataManager.isWeapon(item);
- return DataManager.isArmor(item) && item.etypeId === 2;
- };
复制代码 Window_ItemCategory.prototype.makeCommandList下面两段改成这样?我不确定这样改···我只知道是改这里··· |
|