Project1

标题: pre代码失效 [打印本页]

作者: 英顺的马甲    时间: 2016-7-7 23:51
标题: pre代码失效
↓就是这样↓
RUBY 代码复制
  1. #===============================================================================
  2. # ● 【简易坑爹系列】常用技能排序
  3. #===============================================================================
  4. unless $SKILLSORT_ORIG_ACTOR
  5.   $SKILLSORT_ORIG_ACTOR = Game_Actor.clone
  6.   $SKILLSORT_ORIG_BATTLE = Scene_Battle.clone
  7. end
  8. class Game_Actor < $SKILLSORT_ORIG_ACTOR
  9.   attr_reader :queue
  10.   def initialize(id)
  11.     @queue = []
  12.     super(id)
  13.   end
  14.   def skills
  15.     temp = {}
  16.     @queue.each do |id|
  17.       temp[id] ||= 0
  18.       temp[id] += 1
  19.     end
  20.     return super.sort do |id1, id2|
  21.       (($data_skills.size * (temp[id2]||0)) - id2) -
  22.       (($data_skills.size * (temp[id1]||0)) - id1)
  23.     end
  24.   end
  25. end
  26. class Scene_Battle < $SKILLSORT_ORIG_BATTLE
  27.   def start_phase4
  28.     $game_party.actors.each do |a|
  29.       if a.current_action.kind == 1
  30.         a.queue.push a.current_action.skill_id
  31.         a.queue.shift while a.queue.size > 20
  32.       end
  33.     end
  34.     super
  35.   end
  36. end





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