Project1

标题: 怎样使特定玩家使用特定物品其它物品则隐藏起来? [打印本页]

作者: shengfeng    时间: 2017-7-8 00:53
标题: 怎样使特定玩家使用特定物品其它物品则隐藏起来?
大神请指教
作者: shengfeng    时间: 2017-7-8 01:54
忘说了在战斗中
作者: jhhuang    时间: 2017-7-8 02:14
本帖最后由 jhhuang 于 2017-7-8 20:25 编辑

在物品备注里写上下面这句话:
@actor_cost[1]
代表只有1号角色可以使用,如果多个角色可使用写:
@actor_cost[1,3,5,7]
如果都没写,默认所有人可以使用
如果没人能使用,可以写:
@actor_cost[0]

RUBY 代码复制
  1. #encoding:utf-8
  2. #==============================================================================
  3. # ■ Window_BattleItem
  4. #------------------------------------------------------------------------------
  5. #  战斗画面中,选择“使用物品”的窗口。
  6. #==============================================================================
  7.  
  8. class Window_BattleItem < Window_ItemList
  9.   #--------------------------------------------------------------------------
  10.   # ● 生成物品列表
  11.   #--------------------------------------------------------------------------
  12.   def make_item_list
  13.     @data = $game_party.all_items.select {|item| include?(item) and actor_cost?(item) }
  14.     @data.push(nil) if include?(nil)
  15.   end
  16.   #--------------------------------------------------------------------------
  17.   # ● 特定玩家判断
  18.   #--------------------------------------------------------------------------
  19.   def actor_cost?(item)
  20.     if item.note =~ /@actor_cost\[(.+?)\]/
  21.       return false unless $1.split(/,/).collect{|str|str.to_i}.include?(BattleManager.actor.id)
  22.     end
  23.     return true
  24.   end
  25. end

作者: w529987008    时间: 2017-8-18 08:18
jhhuang 发表于 2017-7-8 02:14
在物品备注里写上下面这句话:
@actor_cost[1]
代表只有1号角色可以使用,如果多个角色可使用写:

这个为啥只有在战斗中有用, 在菜单中
还是都能使用啊




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1