Project1

标题: 切换领队五行脚本 [打印本页]

作者: rainaz    时间: 2018-11-26 14:34
标题: 切换领队五行脚本
本帖最后由 rainaz 于 2018-11-26 14:34 编辑

求教于此脚本中加入某开关打开时 无效切换领队

RUBY 代码复制
  1. class Game_Party
  2.   def m5_20150705_swap_leader
  3.     return unless a = @actors.shift
  4.     @actors.push a
  5.     $game_player.refresh
  6.   end
  7. end
  8. class Scene_Map
  9.   alias m5_20150705_update_call_menu update_call_menu
  10.   def update_call_menu
  11.     $game_party.m5_20150705_swap_leader if Input.trigger?(:L)
  12.     m5_20150705_update_call_menu
  13.   end
  14. end

作者: soulsaga    时间: 2018-11-26 15:39
$game_party.m5_20150705_swap_leader if Input.trigger?(:L) and $game_switches[x] == false
作者: KB.Driver    时间: 2018-11-26 15:45
本帖最后由 KB.Driver 于 2018-11-26 15:59 编辑

RUBY 代码复制
  1. module KBD
  2.   SWI = 1
  3.   #此编号开关打开时 禁用切换领队功能
  4. end
  5.  
  6. class Game_Party
  7.   def m5_20150705_swap_leader
  8.     return unless a = @actors.shift
  9.     @actors.push a
  10.     $game_player.refresh
  11.   end
  12. end
  13.  
  14. class Scene_Map
  15.   alias m5_20150705_update_call_menu update_call_menu
  16.   def update_call_menu
  17.     $game_party.m5_20150705_swap_leader if Input.trigger?(:L) && !$game_switches[KBD::SWI]
  18.     m5_20150705_update_call_menu
  19.   end
  20. end



侵删





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