Project1

标题: 急急急,如何设置限定对某人才能使用的物品? [打印本页]

作者: lllzjsj    时间: 2013-1-15 14:16
标题: 急急急,如何设置限定对某人才能使用的物品?
有些物品要设置成只能对主角才能起作用。。。哪位大神知道的告诉下。。。
作者: Sion    时间: 2013-1-15 20:59
只支持限定菜单中使用的物品,插入Main前使用。
物品备注里写<ForActor1>表示该物品只有1#角色能够使用
<ForActor2>表示2#角色能够使用
可以用<ForActor1><ForActor2><ForActor3>表示1、2、3#角色能够使用
不写表示所有角色均可使用
  1. class RPG::UsableItem
  2.   
  3.   def can_this_actor_use?(id,item)
  4.     object = $data_items[item.id]
  5.     object.note.each_line do |line|
  6.       return true if line.include?("<ForActor#{id}>")
  7.     end
  8.     object.note.each_line do |line|
  9.       return false if line.include?("<ForActor")
  10.     end
  11.     return true
  12.   end
  13.   
  14. end

  15. class Game_Battler
  16.   
  17.   def item_test(user, item)
  18.     return false if item.for_dead_friend? != dead?
  19.     return true if $game_party.in_battle
  20.     return true if item.for_opponent?
  21.     return true if item.damage.recover? && item.damage.to_hp? && hp < mhp
  22.     return true if item.damage.recover? && item.damage.to_mp? && mp < mmp
  23.     return true if item_has_any_valid_effects?(user, item) && item.can_this_actor_use?(id,item)
  24.     return false
  25.   end
  26.   
  27. end
复制代码

作者: lllzjsj    时间: 2013-1-16 18:21
Sion 发表于 2013-1-15 20:59
只支持限定菜单中使用的物品,插入Main前使用。
物品备注里写表示该物品只有1#角色能够使用
表示2#角色能够 ...

非常感谢!




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