じ☆ve冰风 发表于 2024-4-19 23:38:35

【简易坑爹系列】常用技能排序

使用此脚本后会依照近几次使用技能的次数将常用的技能排在前方
RUBY 代码
#===============================================================================
# ● 【简易坑爹系列】常用技能排序
#===============================================================================
unless$SKILLSORT_ORIG_ACTOR
$SKILLSORT_ORIG_ACTOR = Game_Actor.clone
$SKILLSORT_ORIG_BATTLE = Scene_Battle.clone
end
class Game_Actor < $SKILLSORT_ORIG_ACTOR
attr_reader :queue
def initialize(id)
    @queue = []
    super(id)
end
def skills
    temp = {}
    @queue.eachdo |id|
      temp ||= 0
      temp += 1
    end
    returnsuper.sortdo |id1, id2|
      (($data_skills.size * (temp||0)) - id2) -
      (($data_skills.size * (temp||0)) - id1)
    end
end
end
class Scene_Battle < $SKILLSORT_ORIG_BATTLE
def start_phase4
    $game_party.actors.eachdo |a|
      if a.current_action.kind == 1
      a.queue.push a.current_action.skill_id
      a.queue.shiftwhile a.queue.size > 20
      end
    end
    super
end
end

             本帖来自P1论坛作者英顺的马甲,因Project1站服务器在国外有时候访问缓慢不方便作者交流学习,经联系P1站长fux2同意署名转载一起分享游戏制作经验,共同为国内独立游戏作者共同创造良好交流环境,原文地址:https://rpg.blue/forum.php?mod=viewthread&tid=394164若有侵权,发帖作者可联系底部站长QQ在线咨询功能删除,谢谢。
页: [1]
查看完整版本: 【简易坑爹系列】常用技能排序