Project1

标题: 有没有物品使用技能的脚本? [打印本页]

作者: shengfeng    时间: 2017-7-8 21:44
标题: 有没有物品使用技能的脚本?
大神们有没有
作者: 张咚咚    时间: 2017-7-9 07:58
RUBY 代码复制
  1. $物品对应技能 = {
  2. 17 => 5,
  3. }
  4.  
  5. class Game_Action
  6.   #--------------------------------------------------------------------------
  7.   # ● 设置物品
  8.   #--------------------------------------------------------------------------
  9.   def set_item(item_id)
  10.     if $物品对应技能.keys.include?(item_id)
  11.       set_skill($物品对应技能[item_id])
  12.     else
  13.       @item.object = $data_items[item_id]
  14.     end
  15.     self
  16.   end
  17. end
  18. class Scene_Battle < Scene_Base
  19.   #--------------------------------------------------------------------------
  20.   # ● 物品“确定”
  21.   #--------------------------------------------------------------------------
  22.   def on_item_ok
  23.  
  24.     if $物品对应技能.keys.include?(@item_window.item.id)
  25.       @skill = $data_skills[$物品对应技能[@item_window.item.id]]
  26.       BattleManager.actor.input.set_skill(@skill.id)
  27.       BattleManager.actor.last_skill.object = @skill
  28.     end
  29.  
  30.     @item = @item_window.item
  31.     BattleManager.actor.input.set_item(@item.id)
  32.     if !@item.need_selection?
  33.       @item_window.hide
  34.       next_command
  35.     elsif @item.for_opponent?
  36.       select_enemy_selection
  37.     else
  38.       select_actor_selection
  39.     end
  40.     $game_party.last_item.object = @item
  41.   end
  42. end

作者: 300英雄    时间: 2017-7-9 09:33
等会,物品干嘛要变成技能,本身物品就可以当一次性的技能。或者不消耗此物品就是永久技能(就是所有人都能用)只要你设置该物品效果等于那个技能不就得了。你说物品使用技能好像没意义吧
作者: shengfeng    时间: 2017-7-9 11:26
因为战斗型物品只能单体攻击
作者: shengfeng    时间: 2017-7-9 12:12
写错了因为使用战斗型物品角色会移动到敌人面前在攻击(怎么设置都要移动到敌人面前在攻击)所以求了物品使用技能,使用后正常了




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