赞 | 0 |
VIP | 40 |
好人卡 | 24 |
积分 | 1 |
经验 | 23627 |
最后登录 | 2020-8-25 |
在线时间 | 869 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 869 小时
- 注册时间
- 2009-3-13
- 帖子
- 782
|
本帖最后由 认真的学 于 2011-2-10 16:27 编辑
在只能给一个特定人物使用的物品的介绍最前面插入[t]人物id(比如[t]1,那么这个物品就只能给阿尔西斯用了)
然后脚本找到Window_Item,101行改成- if self.item != nil
- if self.item.description.include?("[t]")
- itemtxt = self.item.description[4,self.item.description.size-4]
- else
- itemtxt = self.item.description
- end
- end
- @help_window.set_text(self.item == nil ? "" : itemtxt)
复制代码 再找到Scene_Item,167行改成- if @item.description.include?("[t]")
- target.id == @item.description[3,1].to_i ? used = target.item_effect(@item):$game_system.se_play($data_system.buzzer_se)
- end
复制代码 这样这个物品就只能给特定的人物使用了 |
|