设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 6603|回复: 43
打印 上一主题 下一主题

打坐系统v1.03[修正](更新)

 关闭 [复制链接]

Lv1.梦旅人

冰王子

梦石
0
星屑
50
在线时间
34 小时
注册时间
2008-1-27
帖子
1875
跳转到指定楼层
1
发表于 2008-3-19 22:16:33 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
冰冰我又来发脚本了,是打坐系统,是仿文曲星游戏“黄金英雄传说”做的。
是基于特技熟练度升级和RTAB版血槽制作的。所以有很多与主体无关的语句。需要说明的是需要保留这两个脚本。
先看一下效果图吧!
使用方法在脚本里说了,在这就不废话了


  1. =begin
  2. --------------------------------------------------------------------------------
  3. 打坐系统v1.03[修正] By 凌冰
  4. 仿文曲星游戏“黄金英雄传说”
  5. 基于特技熟练度升级和RTAB版血槽制作
  6. 不可缺少以上两个脚本。
  7. 设置:
  8. 需要打坐的技能勾上“打坐”这个属性
  9. 附带功能:
  10. 在技能说明里设置
  11. “生命+”aaa和“生命增”bbb
  12. 则生命 = 原生命 + aaa + bbb * 技能等级
  13. 技力、攻击、防御、魔御、回避、力量、敏捷、速度、魔力的设置与此类似
  14. 这个脚本还不够完善,先写成这样吧!
  15. 召唤界面
  16. $scene = Scene_Training.new
  17. --------------------------------------------------------------------------------
  18. 更新说明
  19. 在“在这里设置”下进行相关设置
  20. $BASE[id] = i
  21. 则技能id为id的技能打坐中等级无法超过技能id为i的技能
  22. 就像“黄金英雄传说”里高阶的武功等级不能超过基本的武功等级
  23. $LEARN_SKILL[id] = [[lv1,i1],[lv2,i2]]
  24. 则技能id为id的技能在lv1时习得i2,lv2时习得i2
  25. =end
  26. #---------------------------基本设置-------------------------------------------
  27. $打坐最高等级 = 100     #打坐技能不会超过这个等级,即使控制等级限制的变量〉100
  28. $打坐相关属性 = "魔力"  #设置为空则增长率不变
  29. $基本增长率   = 1       #每次增加的数值
  30. $增长频率     = 10      #若设为10则每十分之一秒增加的数值为
  31.                         #$基本增长率 *( $打坐相关属性 / 100 + 1 )
  32.                         #PS:对此,我越来越觉得这个脚本诡异了,不好理解,orz
  33. #---------------------------AVG设置(虽然自己也感觉基本没什么用处)------------
  34. $AVG = false
  35. $AVG图片 = "background"
  36. #---------------------------初始化(不要改这里好吗?)-------------------------
  37. $BASE = []
  38. $LEARN_SKILL = []
  39. $LEVEL_LIMIT = []
  40. #---------------------------基础技能设置-----------------------------------------
  41. $BASE[3] = 2
  42. $BASE[4] = 2
  43. $BASE[5] = 2
  44. $BASE[6] = 2
  45. $BASE[7] = 2#编号为3,4,5,6,7的技能等级不能超过编号为2的技能的等级
  46. #---------------------------领悟技能设置---------------------------------------
  47. $LEARN_SKILL[3] = [[100,13]]#3号技能10级时学会12号技能
  48. $LEARN_SKILL[4] = [[100,13]]
  49. $LEARN_SKILL[5] = [[100,13]]
  50. $LEARN_SKILL[6] = [[100,13]]
  51. $LEARN_SKILL[7] = [[100,13]]
  52. $LEARN_SKILL[1] = [[25,12]]
  53. #---------------------------技能等级限制---------------------------------------
  54. $LEVEL_LIMIT[2] =  [[1,102]]
  55. $LEVEL_LIMIT[3] =  [[1,103]]
  56. $LEVEL_LIMIT[4] =  [[1,104]]
  57. $LEVEL_LIMIT[5] =  [[1,105]]
  58. $LEVEL_LIMIT[6] =  [[1,106]]
  59. $LEVEL_LIMIT[7] =  [[1,107]]
  60. $LEVEL_LIMIT[8] =  [[1,108]]
  61. $LEVEL_LIMIT[9] =  [[1,109]]
  62. $LEVEL_LIMIT[10] = [[1,110]]
  63. $LEVEL_LIMIT[11] = [[1,111]]#角色ID,变量号
  64. #------------------------------------------------------------------------------
  65. #==============================================================================
  66. #绘制打坐条
  67. #==============================================================================
  68. class Window_Base < Window
  69.   def draw_actor_skill_exp(actor, skill, x = 0, y = -5,width = 600)
  70.     self.contents.clear
  71.     self.contents.font.color = system_color
  72.     self.contents.draw_text(0, y+25, 120, 32, "打坐中...")
  73.     actor.skill_level[skill.id] = 0 if actor.skill_level[skill.id] == nil
  74.     name_level = skill.name + "(Lv" + actor.skill_level[skill.id].to_s + ")"
  75.     self.contents.font.color = Color.new(128, 255, 255, 255)
  76.     self.contents.draw_text(240, y+25, 204, 32, name_level, 0)
  77.     self.contents.font.color = normal_color
  78.     count = actor.skill_count[skill.id].to_i
  79.     self.contents.draw_text(480, y+25, 48, 32, count.to_s, 2)
  80.     self.contents.draw_text(480 + 48, y+25, 12, 32, "/", 1)
  81.     self.contents.draw_text(480 + 60, y+25, 48, 32, actor.skill_use[skill.id].to_s)
  82.     if actor.skill_use[skill.id] != 0
  83.       rate = actor.skill_count[skill.id].to_f / actor.skill_use[skill.id].to_f
  84.     else
  85.       rate = 0
  86.     end
  87.     plus_x = 0
  88.     rate_x = 0
  89.     plus_y = 25
  90.     plus_width = 0
  91.     rate_width = 95
  92.     height = 15
  93.     align1 = 1
  94.     align2 = 2
  95.     align3 = 0
  96.     grade1 = 1
  97.     grade2 = 0
  98.     color1 = Color.new(0, 0, 0, 192)
  99.     color2 = Color.new(255, 255, 192, 192)
  100.     color3 = Color.new(0, 0, 0, 192)
  101.     color4 = Color.new(64, 0, 0, 192)
  102.     color5 = Color.new(80 - 24 * rate, 80 * rate, 14 * rate, 192)
  103.     color6 = Color.new(240 - 72 * rate, 240 * rate, 62 * rate, 192)
  104.     if actor.skill_use[skill.id] != 0
  105.       hp=(width + plus_width)*actor.skill_count[skill.id]*rate_width/100/actor.skill_use[skill.id]
  106.     else
  107.       hp = 0
  108.     end
  109.     gauge_rect(x + plus_x + width * rate_x / 100, y + plus_y,
  110.                 width, plus_width + width * rate_width / 100,
  111.                 height, hp, align1, align2, align3,
  112.                 color1, color2, color3, color4, color5, color6, grade1, grade2)
  113.   end
  114. end
  115. #==============================================================================
  116. #绘制打坐条
  117. #==============================================================================

  118. #==============================================================================
  119. #追加定义
  120. #==============================================================================
  121. class Game_Actor
  122.   include Skill_updata
  123.   attr_accessor   :skill_count
  124.   alias skill_updata_eci setup
  125.   def setup(actor_id)
  126.     skill_updata_eci(actor_id)
  127.     @skill_count = []
  128.     for id in 1...$data_skills.size
  129.       @skill_count[id] = 0
  130.     end
  131.   end
  132. end
  133. module RPG
  134.   class Skill
  135.     def kind
  136.       return 1 if element_set.include?(get_train_id)
  137.       return 0
  138.     end
  139.     def get_train_id
  140.       if @train_id == nil
  141.         result = nil
  142.         for i in 1 ... $data_system.elements.size
  143.           if $data_system.elements[i] == "打坐"
  144.             result = i
  145.             break
  146.           end
  147.         end
  148.         @train_id = result == nil ? 0 : result
  149.       end
  150.       return @train_id
  151.     end
  152.   end
  153. end
  154. #==============================================================================
  155. #追加定义
  156. #==============================================================================

  157. #==============================================================================
  158. #等级限制修正
  159. #==============================================================================
  160. class Game_Actor
  161.   def make_skill_list(skill_id)
  162.     interval = S_INTER[skill_id]
  163.     up_interval = ( (interval != nil and interval[@actor_id] != nil) ? interval[@actor_id] : UPDATA_INTERVAL)
  164.     slope = S_SLOPE[skill_id]
  165.     up_slope = ( (slope != nil and slope[@actor_id] != nil) ? slope[@actor_id] :  UPDATA_SLOP )
  166.     limit = S_LEVEL[skill_id]
  167.     limit_lv = ( (limit != nil and limit[@actor_id] != nil) ? limit[@actor_id] : LEVEL_LIMIT )
  168.     limit_lv = $打坐最高等级 if $data_skills[skill_id].kind == 1
  169.     list = []
  170.     list[0] = 0
  171.     for lv in 1...limit_lv+1
  172.       exp = 0
  173.       case SKILL_PATTERN
  174.       when 0
  175.         exp = up_interval * lv
  176.       when 2
  177.         exp = list[lv-1] + up_slope * lv + up_interval
  178.       when 1
  179.         exp = list[lv-1] + up_interval * lv
  180.       end
  181.       list[lv] = exp.truncate
  182.     end
  183.     return list
  184.   end
  185.   def skill_update_main(actor, skill)
  186.     actor.skill_use[skill.id] += 1
  187.     limit = S_LEVEL[skill.id]
  188.     s_limit = ( (limit != nil and limit[actor.id] != nil) ? limit[actor.id] : LEVEL_LIMIT)
  189.     s_limit = $打坐最高等级 if $data_skills[skill.id].kind == 1
  190.     if s_limit == false or actor.skill_level[skill.id] < s_limit
  191.       interval = actor.skill_list[skill.id]
  192.       if actor.skill_use[skill.id] == interval[actor.skill_level[skill.id]+1]
  193.         actor.skill_level[skill.id] += 1
  194.         actor.skill_up = true
  195.         if SKILL_MIGHT_UP
  196.           might = S_MIGHT[skill.id]
  197.           might_rate = ((might != nil and might[actor.id] != nil) ? might[actor.id] : MIGHT_RATE)
  198.           actor.skill_power[skill.id] += skill.power * might_rate / 100
  199.           actor.skill_power[skill.id] = actor.skill_power[skill.id].truncate
  200.         end
  201.         if SP_COST_DOWN
  202.           cost = S_COST[skill.id]
  203.           cost_rate = ((cost != nil and cost[actor.id] != nil) ? cost[actor.id] : COST_RATE)
  204.           actor.skill_sp_cost[skill.id] -= skill.sp_cost * cost_rate / 100
  205.           actor.skill_sp_cost[skill.id] = actor.skill_sp_cost[skill.id].truncate
  206.           if actor.skill_sp_cost[skill.id] < 0
  207.             actor.skill_sp_cost[skill.id] = 0
  208.           end
  209.         end
  210.         if SKILL_HIT_UP
  211.           hit = S_HIT[skill.id]
  212.           hit_rate = ((hit != nil and hit[actor.id] != nil) ? hit[actor.id] : HIT_RATE)
  213.           actor.skill_hit[skill.id] += skill.hit * hit_rate / 100
  214.           actor.skill_hit[skill.id] = actor.skill_hit[skill.id].truncate
  215.           if actor.skill_hit[skill.id] > 100
  216.             actor.skill_hit[skill.id] = 100
  217.           end
  218.         end
  219.         for state in skill.plus_state_set
  220.           actor.state_holdturn[state] += 1
  221.         end
  222.       end
  223.     end
  224.   end
  225. end
  226. class Interpreter
  227.   def set_skill_level(actor_id, skill_id, level)
  228.     actor = $game_actors[actor_id]
  229.     skill = $data_skills[skill_id]
  230.     limit = S_LEVEL[skill_id]
  231.     s_limit = ( (limit != nil and limit[actor.id] != nil) ? limit[actor.id] : LEVEL_LIMIT)
  232.     s_limit = $打坐最高等级 if $data_skills[skill_id].kind == 1
  233.     if level > s_limit or level < 0
  234.       return
  235.     end
  236.     actor.skill_level[skill.id] = level
  237.     use_list = actor.skill_list[skill.id]
  238.     actor.skill_use[skill.id] = use_list[level]
  239.     if SKILL_MIGHT_UP
  240.       actor.skill_power[skill.id] = skill.power
  241.       might = S_MIGHT[skill.id]
  242.       might_rate = ((might != nil and might[actor.id] != nil) ? might[actor.id] : MIGHT_RATE)
  243.       for i in 0...level
  244.         actor.skill_power[skill.id] += skill.power * might_rate / 100
  245.         actor.skill_power[skill.id] = actor.skill_power[skill.id].truncate
  246.       end
  247.     end
  248.     if SP_COST_DOWN
  249.       actor.skill_sp_cost[skill.id] = skill.sp_cost
  250.       cost = S_COST[skill.id]
  251.       cost_rate = ((cost != nil and cost[actor.id] != nil) ? cost[actor.id] : COST_RATE)
  252.       for i in 0...level
  253.         actor.skill_sp_cost[skill.id] -= skill.sp_cost * cost_rate / 100
  254.         actor.skill_sp_cost[skill.id] = actor.skill_sp_cost[skill.id].truncate
  255.       end
  256.       if actor.skill_sp_cost[skill.id] < 0
  257.         actor.skill_sp_cost[skill.id] = 0
  258.       end
  259.     end
  260.     if SKILL_HIT_UP
  261.       actor.skill_hit[skill.id] = skill.hit
  262.       hit = S_HIT[skill.id]
  263.       hit_rate = ((hit != nil and hit[actor.id] != nil) ? hit[actor.id] : HIT_RATE)
  264.       for i in 0...level
  265.         actor.skill_hit[skill.id] += skill.hit * hit_rate / 100
  266.         actor.skill_hit[skill.id] = actor.skill_hit[skill.id].truncate
  267.       end
  268.       if actor.skill_hit[skill.id] > 100
  269.         actor.skill_hit[skill.id] = 100
  270.       end
  271.     end
  272.     for state in skill.plus_state_set
  273.       actor.state_holdturn[state] += 1
  274.     end
  275.   end
  276. end
  277. #==============================================================================
  278. #等级限制修正
  279. #==============================================================================

  280. #==============================================================================
  281. #定义增加属性
  282. #==============================================================================
  283. module RPG
  284.   class Skill
  285.     def mxh_plus
  286.       string = $data_system.words.hp+"+"
  287.       return 0 if @description.split(string)[1] == nil
  288.       return @description.split(string)[1].to_i
  289.     end
  290.     def mxh_rate
  291.       string = $data_system.words.hp+"增"
  292.       return 0 if @description.split(string)[1] == nil
  293.       return @description.split(string)[1].to_i
  294.     end
  295.     def mxs_plus
  296.       string = $data_system.words.sp+"+"
  297.       return 0 if @description.split(string)[1] == nil
  298.       return @description.split(string)[1].to_i
  299.     end
  300.     def mxs_rate
  301.       string = $data_system.words.sp+"增"
  302.       return 0 if @description.split(string)[1] == nil
  303.       return @description.split(string)[1].to_i
  304.     end
  305.     def atk_plus
  306.       string = $data_system.words.atk+"+"
  307.       return 0 if @description.split(string)[1] == nil
  308.       return @description.split(string)[1].to_i
  309.     end
  310.     def atk_rate
  311.       string = $data_system.words.atk+"增"
  312.       return 0 if @description.split(string)[1] == nil
  313.       return @description.split(string)[1].to_i
  314.     end
  315.     def pdef_plus
  316.       string = $data_system.words.pdef+"+"
  317.       return 0 if @description.split(string)[1] == nil
  318.       return @description.split(string)[1].to_i
  319.     end
  320.     def pdef_rate
  321.       string = $data_system.words.pdef+"增"
  322.       return 0 if @description.split(string)[1] == nil
  323.       return @description.split(string)[1].to_i
  324.     end
  325.     def mdef_plus
  326.       string = $data_system.words.mdef+"+"
  327.       return 0 if @description.split(string)[1] == nil
  328.       return @description.split(string)[1].to_i
  329.     end
  330.     def mdef_rate
  331.       string = $data_system.words.mdef+"增"
  332.       return 0 if @description.split(string)[1] == nil
  333.       return @description.split(string)[1].to_i
  334.     end
  335.     def eva_plus
  336.       return 0 if @description.split(/回避+/)[1] == nil
  337.       return @description.split(/回避+/)[1].to_i
  338.     end
  339.     def eva_rate
  340.       return 0 if @description.split(/回避增/)[1] == nil
  341.       return @description.split(/回避增/)[1].to_i
  342.     end
  343.     def str_plus
  344.       string = $data_system.words.str+"+"
  345.       return 0 if @description.split(string)[1] == nil
  346.       return @description.split(string)[1].to_i
  347.     end
  348.     def str_rate
  349.       string = $data_system.words.str+"增"
  350.       return 0 if @description.split(string)[1] == nil
  351.       return @description.split(string)[1].to_i
  352.     end
  353.     def dex_plus
  354.       string = $data_system.words.dex+"+"
  355.       return 0 if @description.split(string)[1] == nil
  356.       return @description.split(string)[1].to_i
  357.     end
  358.     def dex_rate
  359.       string = $data_system.words.dex+"增"
  360.       return 0 if @description.split(string)[1] == nil
  361.       return @description.split(string)[1].to_i
  362.     end
  363.     def agi_plus
  364.       string = $data_system.words.agi+"+"
  365.       return 0 if @description.split(string)[1] == nil
  366.       return @description.split(string)[1].to_i
  367.     end
  368.     def agi_rate
  369.       string = $data_system.words.agi+"增"
  370.       return 0 if @description.split(string)[1] == nil
  371.       return @description.split(string)[1].to_i
  372.     end
  373.     def int_plus
  374.       string = $data_system.words.int+"+"
  375.       return 0 if @description.split(string)[1] == nil
  376.       return @description.split(string)[1].to_i
  377.     end
  378.     def int_rate
  379.       string = $data_system.words.int+"增"
  380.       return 0 if @description.split(string)[1] == nil
  381.       return @description.split(string)[1].to_i
  382.     end
  383.   end
  384. end
  385. #==============================================================================
  386. #定义增加属性
  387. #==============================================================================

  388. #==============================================================================
  389. #属性追加
  390. #==============================================================================
  391. class Game_Actor < Game_Battler
  392.   alias base_maxhp_train base_maxhp
  393.   def base_maxhp
  394.     n = base_maxhp_train
  395.     for i in skills
  396.       skill = $data_skills[i]
  397.       n += skill.mxh_plus + skill.mxh_rate * skill_level[i]
  398.     end
  399.     return n
  400.   end
  401.   alias base_maxsp_train base_maxsp
  402.   def base_maxsp
  403.     n = base_maxsp_train
  404.     for i in skills
  405.       skill = $data_skills[i]
  406.       n += skill.mxs_plus + skill.mxs_rate * skill_level[i]
  407.     end
  408.     return n
  409.   end
  410.   alias base_atk_train base_atk
  411.   def base_atk
  412.     n = base_atk_train
  413.     for i in skills
  414.       skill = $data_skills[i]
  415.       n += skill.atk_plus + skill.atk_rate * skill_level[i]
  416.     end
  417.     return n
  418.   end
  419.   alias base_pdef_train base_pdef
  420.   def base_pdef
  421.     n = base_pdef_train
  422.     for i in skills
  423.       skill = $data_skills[i]
  424.       n += skill.pdef_plus + skill.pdef_rate * skill_level[i]
  425.     end
  426.     return n
  427.   end
  428.   alias base_mdef_train base_mdef
  429.   def base_mdef
  430.     n = base_mdef_train
  431.     for i in skills
  432.       skill = $data_skills[i]
  433.       n += skill.mdef_plus + skill.mdef_rate * skill_level[i]
  434.     end
  435.     return n
  436.   end
  437.   alias base_eva_train base_eva
  438.   def base_eva
  439.     n = base_eva_train
  440.     for i in skills
  441.       skill = $data_skills[i]
  442.       n += skill.eva_plus + skill.eva_rate * skill_level[i]
  443.     end
  444.     return n
  445.   end
  446.   alias base_str_train base_str
  447.   def base_str
  448.     n = base_str_train
  449.     for i in skills
  450.       skill = $data_skills[i]
  451.       n += skill.str_plus + skill.str_rate * skill_level[i]
  452.     end
  453.     return n
  454.   end
  455.   alias base_dex_train base_dex
  456.   def base_dex
  457.     n = base_dex_train
  458.     for i in skills
  459.       skill = $data_skills[i]
  460.       n += skill.dex_plus + skill.dex_rate * skill_level[i]
  461.     end
  462.     return n
  463.   end
  464.   alias base_agi_train base_agi
  465.   def base_agi
  466.     n = base_agi_train
  467.     for i in skills
  468.       skill = $data_skills[i]
  469.       n += skill.agi_plus + skill.agi_rate * skill_level[i]
  470.     end
  471.     return n
  472.   end
  473.   alias base_int_train base_int
  474.   def base_int
  475.     n = base_int_train
  476.     for i in skills
  477.       skill = $data_skills[i]
  478.       n += skill.int_plus + skill.int_rate * skill_level[i]
  479.     end
  480.     return n
  481.   end
  482. end
  483. #==============================================================================
  484. #属性追加
  485. #==============================================================================

  486. #==============================================================================
  487. #绘制选择技能窗口
  488. #==============================================================================
  489. class Window_Skill_Eci < Window_Selectable
  490.   include Skill_updata
  491.   def initialize(actor)
  492.     super(336, 0, 640-336, 480)
  493.     @actor = actor
  494.     refresh
  495.     self.index = 0
  496.   end
  497.   def skill
  498.     return @data[self.index]
  499.   end
  500.   def refresh
  501.     if self.contents != nil
  502.       self.contents.dispose
  503.       self.contents = nil
  504.     end
  505.     @data = []
  506.     for i in [email protected]
  507.       skill = $data_skills[@actor.skills[i]]
  508.       if skill != nil
  509.         @data.push(skill)
  510.       end
  511.     end
  512.     @item_max = @data.size
  513.     if @item_max > 0
  514.       self.contents = Bitmap.new(width - 32, row_max * 32)
  515.       for i in 0...@item_max
  516.         draw_item(i)
  517.       end
  518.     end
  519.   end
  520.   def draw_item(index)
  521.     skill = @data[index]
  522.     if skill.kind == 1
  523.       self.contents.font.color = normal_color
  524.     else
  525.       self.contents.font.color = disabled_color
  526.     end
  527.     x = 4
  528.     y = index * 32
  529.     rect = Rect.new(x, y, self.width - 32, 32)
  530.     self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
  531.     bitmap = RPG::Cache.icon(skill.icon_name)
  532.     opacity = self.contents.font.color == normal_color ? 255 : 128
  533.     self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24), opacity)
  534.     #self.contents.draw_text(x + 28, y, 204, 32, skill.name, 0)
  535.     @actor.skill_level[skill.id] = 0 if @actor.skill_level[skill.id] == nil
  536.     limit = $打坐最高等级
  537.     level_limit = $LEVEL_LIMIT[skill.id]
  538.     if level_limit != nil
  539.       for i in 0...level_limit.size
  540.         lv_limit = level_limit[i]
  541.         if @actor.id == lv_limit[0]
  542.           limit = $game_variables[lv_limit[1]]
  543.           limit = $打坐最高等级 if limit > $打坐最高等级
  544.         end
  545.       end
  546.     end
  547.     if skill.kind != 1
  548.       limit = LEVEL_LIMIT
  549.     end
  550.     name_level = skill.name + "(Lv" + @actor.skill_level[skill.id].to_s+"/" +limit.to_s+ ")"
  551.     #name_level = skill.name + "(Lv" + @actor.skill_level[skill.id].to_s + ")"
  552.     self.contents.draw_text(x + 28, y, 204, 32, name_level, 0)
  553.   end
  554. end
  555. #==============================================================================
  556. #绘制选择技能窗口
  557. #==============================================================================
  558. #==============================================================================
  559. #绘制打坐窗口
  560. #==============================================================================
  561. class Window_Train < Window_Base
  562.   def initialize(actor_id ,skill_id)
  563.     @actor_id = actor_id
  564.     @skill_id = skill_id
  565.     super(0, 0, 640, 80)
  566.     self.contents = Bitmap.new(width-32, height-32)
  567.     self.opacity = 160
  568.   end
  569.   def update
  570.     actor = $game_actors[@actor_id]
  571.     skill = $data_skills[@skill_id]
  572.     draw_actor_skill_exp(actor, skill)
  573.   end
  574. end
  575. #==============================================================================
  576. #绘制打坐窗口
  577. #==============================================================================

  578. #==============================================================================
  579. #描绘打坐场景
  580. #==============================================================================
  581. class Scene_Training
  582.   def initialize
  583.     @update_train = false
  584.   end
  585.   def main
  586.     if $AVG
  587.       @spriteset = Sprite.new#eci
  588.       @spriteset.bitmap = Bitmap.new("Graphics/Pictures/"+$AVG图片)#eci
  589.     else
  590.       @spriteset = Spriteset_Map.new
  591.     end
  592.     @target_window = Window_Target.new
  593.     @target_window.index = 0
  594.     Graphics.transition
  595.     loop do
  596.       Graphics.update
  597.       Input.update
  598.       update
  599.       if $scene != self
  600.         break
  601.       end
  602.     end
  603.     Graphics.freeze
  604.     @target_window.dispose
  605.     @spriteset.dispose
  606.   end
  607.   def update
  608.     if @update_train
  609.       update_train
  610.     elsif @target_window.active
  611.       update_target
  612.     else
  613.       update_training
  614.     end
  615.   end
  616.   def update_target
  617.     @target_window.update
  618.     if Input.trigger?(Input::B)
  619.       $game_system.se_play($data_system.cancel_se)
  620.       #@target_window.dispose
  621.       $scene = Scene_Map.new
  622.       return
  623.     end
  624.     if Input.trigger?(Input::C)
  625.       @actor = $game_party.actors[@target_window.index]
  626.       @skill_window = Window_Skill_Eci.new(@actor)
  627.       @skill_window.index = 0
  628.       @target_window.active = false
  629.       @update_train = true
  630.     end
  631.   end
  632.   def update_train
  633.     @skill_window.update
  634.     if Input.trigger?(Input::B)
  635.       $game_system.se_play($data_system.cancel_se)
  636.       @skill_window.visible = false
  637.       @target_window.active = true
  638.       @update_train = false
  639.       return
  640.     end
  641.     if Input.trigger?(Input::C)
  642.       @actor_id = @actor.id
  643.       @skill_id = @skill_window.skill.id
  644.       unless $data_skills[@skill_id].kind == 1
  645.         $game_system.se_play($data_system.buzzer_se)
  646.         return
  647.       end
  648.       @skill_window.visible = false
  649.       @target_window.visible = false
  650.       @window = Window_Train.new(@actor_id, @skill_id)
  651.       @update_train = false
  652.       @skill_window.dispose
  653.     end
  654.   end
  655.   def update_training
  656.     @actor_id = @actor.id
  657.     @skill_id = @skill_window.skill.id
  658.     base_id = $BASE[@skill_id]
  659.     limit = $打坐最高等级
  660.     level_limit = $LEVEL_LIMIT[@skill_id]
  661.     if level_limit != nil
  662.       for i in 0...level_limit.size
  663.         lv_limit = level_limit[i]
  664.         if @actor_id == lv_limit[0]
  665.           limit = $game_variables[lv_limit[1]]
  666.           limit = $打坐最高等级 if limit > $打坐最高等级
  667.         end
  668.       end
  669. #==============================================================================
  670. #某个非最优算法的遗迹
  671. #==============================================================================
  672. =begin
  673.       if level_limit[1] != nil
  674.         for i in 1...level_limit.size
  675.           lv_limit = level_limit[i]
  676.           if value < lv_limit[0]
  677.             limit = lv_limit[1]
  678.             break
  679.           end
  680.         end
  681.       end
  682. =end
  683. #==============================================================================
  684. #某个非最优算法的遗迹
  685. #==============================================================================
  686.     end
  687.     if (base_id != nil and @actor.skill_level[@skill_id] < @actor.skill_level[base_id]) or base_id == nil
  688.       rate = Graphics.frame_rate/$增长频率
  689.       if (Graphics.frame_count%rate.to_i) == 0 and @actor.skill_level[@skill_id] < limit
  690.         case $打坐相关属性
  691.         when "力量"
  692.           a = @actor.str/100+1
  693.         when "敏捷"
  694.           a = @actor.dex/100+1
  695.         when "速度"
  696.           a = @actor.agi/100+1
  697.         when "魔力"
  698.           a = @actor.int/100+1
  699.         else
  700.           a = 1
  701.         end
  702.         @actor.skill_count[@skill_id] += $基本增长率*a
  703.       end
  704.     end
  705.     if @actor.skill_count[@skill_id] >= @actor.skill_use[@skill_id]
  706.       @actor.skill_count[@skill_id] = 0
  707.       @actor.skill_update_main(@actor, @skill_window.skill)
  708.       learn_sk = $LEARN_SKILL[@skill_id]
  709.       if learn_sk != nil
  710.         for i in 0...learn_sk.size
  711.           le_sk = learn_sk[i]
  712.           if @actor.skill_level[@skill_id] >= le_sk[0]
  713.             @actor.learn_skill(le_sk[1])
  714.           end
  715.         end
  716.       end
  717.     end
  718.     @window.update
  719.     if Input.trigger?(Input::B)
  720.       $game_system.se_play($data_system.cancel_se)
  721.       $scene = Scene_Map.new
  722.       @window.dispose
  723.     end
  724.   end
  725. end
  726. #==============================================================================
  727. #描绘打坐场景
  728. #==============================================================================
  729. #==============================================================================
  730. #无效化打坐技能的默认升级方式
  731. #==============================================================================
  732. class Game_Battler
  733.   def get_train_id
  734.     if @train_id == nil
  735.       result = nil
  736.       for i in 1 ... $data_system.elements.size
  737.         if $data_system.elements[i] == "打坐"
  738.           result = i
  739.           break
  740.         end
  741.       end
  742.       @train_id = result == nil ? 0 : result
  743.     end
  744.     return @train_id
  745.   end
  746.   alias skill_update_main_train skill_update_main
  747.   def skill_update_main(actor, skill)
  748.     if !skill.element_set.include?(get_train_id)
  749.       skill_update_main_train(actor, skill)
  750.     end
  751.   end
  752.   alias skill_use_recount_train skill_use_recount
  753.   def skill_use_recount(actor, skill)
  754.     if !skill.element_set.include?(get_train_id)
  755.       skill_use_recount_train(actor, skill)
  756.     end
  757.   end
  758. end
  759. #==============================================================================
  760. #无效化打坐技能的默认升级方式
  761. #==============================================================================


  762. =begin
  763. #==============================================================================
  764. #貌似这个是等级限制修正的更优算法!
  765. #==============================================================================
  766. module Skill_updata
  767.   def get_train_id
  768.     if @train_id == nil
  769.       result = nil
  770.       for i in 1 ... $data_system.elements.size
  771.         if $data_system.elements[i] == "打坐"
  772.           result = i
  773.           break
  774.         end
  775.       end
  776.       @train_id = result == nil ? 0 : result
  777.     end
  778.     return @train_id
  779.   end
  780.   def skill_lv
  781.     for i in 1...$data_skills.size
  782.       skill = $data_skills[i]
  783.       if skill.element_set.include?(get_train_id)
  784.         S_LEVEL[i] = []
  785.         for j in 1...$data_actors.size
  786.           S_LEVEL[i].push(j=>$打坐最高等级)
  787.         end
  788.       end
  789.     end
  790.   end
  791. end
  792. class Scene_Title
  793.   include Skill_updata
  794.   alias train_main main
  795.   def main
  796.     train_main
  797.     skill_lv
  798.   end
  799. end
  800. =end
复制代码

范例
http://rpg.blue/upload_program/files/打坐系统v1.03[修正]_87226377.rar

              [本贴由 风雪优游 于 2008-3-19 22:23:44 进行了编辑]

              [本贴由 风雪优游 于 2008-4-2 21:23:17 进行了编辑]
不常在线,有事PM

Lv1.梦旅人

冰王子

梦石
0
星屑
50
在线时间
34 小时
注册时间
2008-1-27
帖子
1875
2
 楼主| 发表于 2008-3-19 22:17:27 | 只看该作者
不是连贴,是放不开
顺便附两个相关脚本
特技熟练度升级


  1. #=====================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #====================================================================


  4. #====================================================================
  5. # ■ スキルアップデート   Ver. 4.4.0                     by Claimh
  6. #---------------------------------------------------------------
  7. #     スキルごとにレベル制を導入する
  8. #     戦闘中にスキルを使用するほど、威力上昇、消費SP減少、命中率上昇
  9. #==============================================================

  10. module Skill_updata
  11.   S_MIGHT = []
  12.   S_COST = []
  13.   S_HIT = []
  14.   S_LEVEL = []
  15.   S_INTER = []
  16.   S_SLOPE = []
  17.   S_ANIME = []
  18.   S_ELEMENT = []
  19.   S_STATE_P = []
  20.   S_STATE_N = []
  21. #=============================================================
  22. # □ 自定义内容
  23. #==============================================================
  24.   # 威力上升使用true/false
  25.   SKILL_MIGHT_UP = true
  26.   
  27.   # SP消耗减少使用true/false
  28.   SP_COST_DOWN = true      
  29.   
  30.   # 命中率上升使用true/false
  31.   SKILL_HIT_UP = true      
  32.   
  33.   # 属性变化的使用true/false
  34.   ELEMENT_CHANGE = true   
  35.   
  36.   # 状态变化的使用true/false
  37.   STATE_CHANGE = true
  38.   
  39.   # 显示特技等级上升true/false
  40.   SHOW_SKILL_LV_UP = true
  41.   
  42.   # 等级上升的声效,不用的时候就=nil
  43.   SKILLUP_SE = "056-Right02"
  44.   
  45.   # 菜单使用计数true/false
  46.   MENU_COUNT = false

  47.   # 升级所需次数
  48.   UPDATA_INTERVAL = 10
  49.   
  50.   # 等级上限
  51.   LEVEL_LIMIT = 20

  52.   # 威力上升率(%%)
  53.   MIGHT_RATE = 5
  54.   
  55.   # SP消耗减少率(%)
  56.   COST_RATE = 3
  57.   
  58.   # 命中上升率(%)
  59.   HIT_RATE = 10
  60.   UPDATA_SLOP = 10
  61.   #-------------------------------------------------------------
  62.   # 特别技能的详细设定,57和61号特技分别是十字斩和扫荡,大家最熟悉的两个招数
  63.   #----------------------------------------------------------------

  64.   # 界限水平
  65.   # S_LEVEL[技艺ID]=[角色ID=>界限,…]
  66. #  S_LEVEL[57] = {1=>18, 2=>12, 3=>5, 4=>12, 5=>12, 6=>12, 7=>12, 8=>12}
  67. #  S_LEVEL[61] = {1=>12, 2=>18, 3=>15, 4=>12, 5=>12, 6=>12, 7=>12, 8=>12}
  68.      
  69.   # 技艺&actor威力上升率
  70.   # S_MIGHT[技艺ID]=[角色ID=>威力上升率,…]
  71. #  S_MIGHT[57] = {1=>8, 2=>2, 3=>5, 4=>2, 5=>2, 6=>2, 7=>2, 8=>2}
  72. #  S_MIGHT[61] = {1=>2, 2=>8, 3=>5, 4=>2, 5=>2, 6=>2, 7=>2, 8=>2}

  73.   # 技艺&actorSP消费减少率
  74.   # S_COST[技艺ID]=[角色ID=>SP消费减少率,…]
  75. #  S_COST[57] = {1=>8, 2=>2, 3=>5, 4=>2, 5=>2, 6=>2, 7=>2, 8=>2}
  76. #  S_COST[61] = {1=>2, 2=>8, 3=>5, 4=>2, 5=>2, 6=>2, 7=>2, 8=>2}

  77.   # 技艺&actor命中率
  78.   # S_HIT[技艺ID]=[角色ID=>命中上升率,…]
  79. #  S_HIT[57] = {1=>2, 2=>1, 3=>1, 4=>1, 5=>1, 6=>1, 7=>1, 8=>1}
  80. #  S_HIT[61] = {1=>1, 2=>2, 3=>1, 4=>1, 5=>1, 6=>1, 7=>1, 8=>1}

  81.   #-----------------------------------------------------------------
  82.   # 技能成长的具体调节
  83.   #-----------------------------------------------------------------
  84.   # 技艺的增长图形
  85.   # 0:使用技艺一定回数的话提高水平
  86.   # 1:技艺一定回数+每水平の使用提高水平
  87.   SKILL_PATTERN = 2
  88.   
  89.   # 技艺水平上升间隔每(使用几回Lv提高)
  90.   #   ※没有设定的情况→基本设定被适应
  91.   # S_INTER[技艺ID]=[actorID=>上升间隔,…]
  92. #  S_INTER[57] = {1=>5, 2=>8, 3=>8, 4=>8, 5=>8, 6=>8, 7=>8, 8=>8}
  93.   
  94.   # スキルレベル上昇の傾き(パターン1を使用する場合のみ必要)
  95.   #   ※設定がない場合は1となります。
  96.   # S_SLOPE[スキルID] = [アクターID=>上昇の傾き, …]
  97. #  S_SLOPE[57] = {1=>5, 2=>8, 3=>8, 4=>8, 5=>8, 6=>8, 7=>8, 8=>8}

  98.   #-------------------------------------------------------------
  99.   # 技艺增长的话使之动画变化
  100.   #  记录格式: S_ANIME[技艺ID] = [角色ID=>[[等级, 动画ID]], ・・・]
  101.   #------------------------------------------------------------
  102.   # 实施技艺增长的动画变化?
  103.   USE_S_ANIME = true
  104.   
  105.   # 設定例
  106.   # 1号角色,57号特技,lv5,lv10动画变化
  107.   # 2号角色,Lv.11动画变化
  108. #  S_ANIME[57] = {1=>[[5, 69], [10, 70]], 2=>[[11, 70]]}

  109.   #-------------------------------------------------------------------
  110.   # 属性変化/状态変化
  111.   #------------------------------------------------------------------
  112.   # 属性変化
  113.   # S_ELEMENT[技艺ID] = {角色ID=>{水平=>[属性ID,属性ID…]}, ・・・・}
  114. #  S_ELEMENT[57] = {1=>{1=>[1], 2=>[2], 3=>[3]}, 2=>{1=>[2], 2=>[5]}}

  115.   # 状态変化+
  116.   # S_STATE_P[技艺ID] = {角色ID=>{水平=>[属性ID,属性ID…]}, ・・・・}
  117. #  S_STATE_P[57] = {1=>{1=>[1], 2=>[2], 3=>[3]}, 2=>{1=>[2], 2=>[5]}}

  118.   # 状态変化-
  119.   # S_STATE_N[技艺ID] = {角色ID=>{水平=>[属性ID,属性ID…]}, ・・・・}
  120. #  S_STATE_N[57] = {1=>{1=>[1], 2=>[2], 3=>[3]}, 2=>{1=>[2], 2=>[5]}}

  121. #==================================================================
  122. # □ 自定义内容终了
  123. #==================================================================
  124. end


  125. class Game_Actor
  126.   include Skill_updata
  127.   attr_accessor   :skill_use      # スキル使用回数
  128.   attr_accessor   :skill_level    # スキルレベル
  129.   attr_accessor   :skill_power    # スキル威力更新値
  130.   attr_accessor   :skill_sp_cost  # スキルSP消費更新値
  131.   attr_accessor   :skill_hit      # スキル命中率
  132.   attr_accessor   :skill_up       # レベルアップフラグ
  133.   attr_accessor   :skill_list     # スキルEXPリスト
  134.   attr_accessor   :state_holdturn#eci
  135.   alias skill_updata_init setup
  136.   def setup(actor_id)
  137.     skill_updata_init(actor_id)
  138.     @skill_use = []
  139.     @skill_level = []
  140.     @skill_power = []
  141.     @skill_sp_cost = []
  142.     @skill_hit = []
  143.     @skill_up = false
  144.     @skill_list = []
  145.     @state_holdturn = []#eci
  146.     for id in 1...$data_skills.size
  147.       @skill_use[id] = 0
  148.       @skill_level[id] = 0
  149.       @skill_power[id] = $data_skills[id].power
  150.       @skill_sp_cost[id] = $data_skills[id].sp_cost
  151.       @skill_hit[id] = $data_skills[id].hit
  152.       @skill_list[id] = make_skill_list(id)
  153.     end
  154.     for id in 1...$data_states.size
  155.       @state_holdturn[id] = $data_states[id].hold_turn#eci
  156.     end
  157.   end

  158.   #-------------------------------------------------------------
  159.   # ● スキルEXP 計算
  160.   #------------------------------------------------------------
  161.   def make_skill_list(skill_id)
  162.     interval = S_INTER[skill_id]
  163.     up_interval = ( (interval != nil and interval[@actor_id] != nil) ? interval[@actor_id] : UPDATA_INTERVAL)
  164.     slope = S_SLOPE[skill_id]
  165.     up_slope = ( (slope != nil and slope[@actor_id] != nil) ? slope[@actor_id] :  UPDATA_SLOP )
  166.     limit = S_LEVEL[skill_id]
  167.     limit_lv = ( (limit != nil and limit[@actor_id] != nil) ? limit[@actor_id] : LEVEL_LIMIT )
  168.     list = []
  169.     list[0] = 0
  170.     for lv in 1...limit_lv+1
  171.       exp = 0
  172.       case SKILL_PATTERN
  173.       when 0
  174.         exp = up_interval * lv
  175.       when 2
  176.         exp = list[lv-1] + up_slope * lv + up_interval
  177.       when 1
  178.         exp = list[lv-1] + up_interval * lv
  179.       end
  180.       list[lv] = exp.truncate
  181.     end
  182.     return list
  183.   end
  184. end


  185. class Game_Battler
  186.   include Skill_updata
  187.   #-----------------------------------------------------------------
  188.   # ● スキルの効果適用
  189.   #     user  : スキルの使用者 (バトラー)
  190.   #     skill : スキル
  191.   #-------------------------------------------------------------
  192.   alias skill_effect_update skill_effect
  193.   def skill_effect(user, skill)
  194.     up_flag = false
  195.     if user.is_a?(Game_Actor) and ($scene.is_a?(Scene_Battle) or MENU_COUNT)
  196.       skill_update_main(user, skill)
  197.       skill_base = skill.dup
  198.       # 威力上昇
  199.       if SKILL_MIGHT_UP
  200.         skill.power = user.skill_power[skill.id]
  201.       end
  202.       # 命中率上昇
  203.       if SKILL_HIT_UP
  204.         skill.hit = user.skill_hit[skill.id]
  205.       end
  206.       for state in skill.plus_state_set
  207.         $data_states[state].hold_turn = user.state_holdturn[state]#eci
  208.       end
  209.       # 属性変化
  210.       if ELEMENT_CHANGE and S_ELEMENT != []
  211.         ele1 = S_ELEMENT[skill.id]
  212.         if ele1 != nil and ele1[user.id] != nil
  213.           ele2 = ele1[user.id]
  214.           if ele2 != [] and ele2[user.skill_level[skill.id]] != nil
  215.             skill.element_set = ele2[user.skill_level[skill.id]]
  216.           end
  217.         end
  218.       end
  219.       # ステート変化
  220.       if STATE_CHANGE
  221.         if S_STATE_P != []
  222.           pst1 = S_STATE_P[skill.id]
  223.           if pst1 != nil and pst1[user.id] != nil
  224.             pst2 = pst1[user.id]
  225.             if pst2 != nil and pst2[user.skill_level[skill.id]] != nil
  226.               skill.plus_state_set = pst2[user.skill_level[skill.id]]
  227. #              p skill.plus_state_set
  228.             end
  229.           end
  230.         end
  231.         if S_STATE_N != []
  232.           nst1 = S_STATE_N[skill.id]
  233.           if nst1 != nil and nst1[user.id] != nil
  234.             nst2 = nst1[user.id]
  235.             if nst1 != nil and nst2[user.skill_level[skill.id]] != nil
  236.               skill.minus_state_set = nst2[user.skill_level[skill.id]]
  237.             end
  238.           end
  239.         end
  240.       end
  241.       up_flag = true
  242.     end
  243.     ret = skill_effect_update(user, skill)    # 原物
  244.     if up_flag
  245.       skill = skill_base
  246.       # Miss時には後戻し
  247.       if self.damage[user] == "Miss"
  248.         skill_use_recount(user, skill)
  249.       end
  250.     end
  251.     return ret
  252.   end
  253.   
  254.   #------------------------------------------------------------
  255.   # ● スキルアップデータメイン
  256.   #-------------------------------------------------------------
  257.   def skill_update_main(actor, skill)
  258.     # スキル使用回数のカウント
  259.     actor.skill_use[skill.id] += 1
  260.     # リミット取得
  261.     limit = S_LEVEL[skill.id]
  262.     s_limit = ( (limit != nil and limit[actor.id] != nil) ? limit[actor.id] : LEVEL_LIMIT)
  263.     # 書き換え限界到達
  264.     if s_limit == false or actor.skill_level[skill.id] < s_limit
  265.       # レベルアップ間隔取得
  266.       interval = actor.skill_list[skill.id]
  267.       # 書き換え回数到達
  268.       if actor.skill_use[skill.id] == interval[actor.skill_level[skill.id]+1]
  269.         # スキルレベル上昇
  270.         actor.skill_level[skill.id] += 1
  271.         actor.skill_up = true
  272.         # 威力上昇 = 有効
  273.         if SKILL_MIGHT_UP
  274.           might = S_MIGHT[skill.id]
  275.           might_rate = ((might != nil and might[actor.id] != nil) ? might[actor.id] : MIGHT_RATE)
  276.           # 補正値更新
  277.           actor.skill_power[skill.id] += skill.power * might_rate / 100
  278.           actor.skill_power[skill.id] = actor.skill_power[skill.id].truncate
  279.         end
  280.         # SP消費減少 = 有効
  281.         if SP_COST_DOWN
  282.           cost = S_COST[skill.id]
  283.           cost_rate = ((cost != nil and cost[actor.id] != nil) ? cost[actor.id] : COST_RATE)
  284.           actor.skill_sp_cost[skill.id] -= skill.sp_cost * cost_rate / 100
  285.           actor.skill_sp_cost[skill.id] = actor.skill_sp_cost[skill.id].truncate
  286.           # SP消費が0以下はありえない
  287.           if actor.skill_sp_cost[skill.id] < 0
  288.             actor.skill_sp_cost[skill.id] = 0
  289.           end
  290.         end
  291.         # 命中率上昇 = 有効
  292.         if SKILL_HIT_UP
  293.           hit = S_HIT[skill.id]
  294.           hit_rate = ((hit != nil and hit[actor.id] != nil) ? hit[actor.id] : HIT_RATE)
  295.           actor.skill_hit[skill.id] += skill.hit * hit_rate / 100
  296.           actor.skill_hit[skill.id] = actor.skill_hit[skill.id].truncate
  297.           # 100以上はありえない
  298.           if actor.skill_hit[skill.id] > 100
  299.             actor.skill_hit[skill.id] = 100
  300.           end
  301.         end
  302.         for state in skill.plus_state_set
  303.           actor.state_holdturn[state] += 1#eci
  304.         end
  305.       end
  306.     end
  307.   end
  308.   
  309.   #---------------------------------------------------------
  310.   # ● 再カウント
  311.   #------------------------------------------------------
  312.   def skill_use_recount(actor, skill)
  313.     if actor.skill_up
  314.       actor.skill_level[skill.id] -= 1
  315.       # 威力を再計算
  316.       if SKILL_MIGHT_UP
  317.         actor.skill_power[skill.id] = skill.power
  318.         might = S_MIGHT[skill.id]
  319.         might_rate = ((might != nil and might[actor.id] != nil) ? might[actor.id] : MIGHT_RATE)
  320.         for i in 1...actor.skill_level[skill.id]
  321.           actor.skill_power[skill.id] += skill.power * might_rate / 100
  322.           actor.skill_power[skill.id] = actor.skill_power[skill.id].truncate
  323.         end
  324.       end
  325.       # SP消費再計算
  326.       if SP_COST_DOWN
  327.         actor.skill_sp_cost[skill.id] = skill.sp_cost
  328.         cost = S_COST[skill.id]
  329.         cost_rate = ((cost != nil and cost[actor.id] != nil) ? cost[actor.id] : COST_RATE)
  330.         for i in 1...actor.skill_level[skill.id]
  331.           actor.skill_sp_cost[skill.id] -= skill.sp_cost * cost_rate / 100
  332.           actor.skill_sp_cost[skill.id] = actor.skill_sp_cost[skill.id].truncate
  333.         end
  334.         # SP消費が0以下はありえない
  335.         if actor.skill_sp_cost[skill.id] < 0
  336.           actor.skill_sp_cost[skill.id] = 0
  337.         end
  338.       end
  339.       # 命中率再計算
  340.       if SKILL_HIT_UP
  341.         actor.skill_hit[skill.id] = skill.hit
  342.         hit = S_HIT[skill.id]
  343.         hit_rate = ((hit != nil and hit[actor.id] != nil) ? hit[actor.id] : HIT_RATE)
  344.         for i in 1...actor.skill_level[skill.id]
  345.           actor.skill_hit[skill.id] += skill.hit * hit_rate / 100
  346.           actor.skill_hit[skill.id] = actor.skill_hit[skill.id].truncate
  347.         end
  348.         # 100以上はありえない
  349.         if actor.skill_hit[skill.id] > 100
  350.           actor.skill_hit[skill.id] = 100
  351.         end
  352.       end
  353.       for state in skill.plus_state_set
  354.           actor.state_holdturn[state] += 1
  355.         end
  356.       actor.skill_up = false
  357.     end
  358.     actor.skill_use[skill.id] -= 1
  359.   end
  360. end

  361. #=================================================================
  362. # スキル成長によるアニメーション変化
  363. #=================================================================
  364. class Scene_Battle
  365.   include Skill_updata
  366.   #--------------------------------------------------------------
  367.   # ● フレーム更新 (メインフェーズ ステップ 4 : 対象側アニメーション)
  368.   #-----------------------------------------------------------
  369.   alias update_phase4_step4_skillup update_phase4_step4
  370.   def update_phase4_step4
  371.     update_phase4_step4_skillup
  372.     if @active_battler.is_a?(Game_Actor) and USE_S_ANIME
  373.       s_anime = S_ANIME[@skill.id]
  374.       # 設定がないなら無視
  375.       if s_anime != nil and s_anime[@active_battler.id] != nil
  376.         s_anime_set = s_anime[@active_battler.id]
  377.         for i in 0...s_anime_set.size
  378.           s_anime_def = s_anime_set[i]
  379.           # 規定レベル以上
  380.           if @active_battler.skill_level[@skill.id] >= s_anime_def[0]
  381.             # 対象側アニメーション
  382.             for target in @target_battlers
  383.               target.animation_id = s_anime_def[1]
  384.             end
  385.           end
  386.         end
  387.       end
  388.     end
  389.   end
  390. end

  391. #=================================================================
  392. # 以下、レベルアップ表示部分(レベルアップ表示がいらないなら消してもOK)
  393. #=================================================================
  394. class Scene_Battle
  395.   include Skill_updata
  396.   if SHOW_SKILL_LV_UP
  397.   #----------------------------------------------------------
  398.   # ● フレーム更新 (メインフェーズ ステップ 2 : アクション開始)
  399.   #----------------------------------------------------------
  400.   alias update_phase4_step2_skillup update_phase4_step2
  401.   def update_phase4_step2
  402.     if @active_battler.is_a?(Game_Actor)
  403.       @active_battler.skill_up = false
  404.     end
  405.     @skillup = false
  406.     update_phase4_step2_skillup   # 原物
  407.   end

  408.   #-------------------------------------------------------------
  409.   # ● フレーム更新 (メインフェーズ ステップ 3 : 行動側アニメーション)
  410.   #-----------------------------------------------------------
  411.   alias update_phase4_step3_skillup update_phase4_step3
  412.   def update_phase4_step3
  413.     #if @active_battler.is_a?(Game_Actor) and @active_battler.skill_up != false
  414.     #  @skillup = true
  415.     #  @skill_up_window = Window_Skillup.new(@active_battler)
  416.     #  if SKILLUP_SE != nil
  417.     #    Audio.se_play("Audio/SE/" + SKILLUP_SE)
  418.     #    sleep(0.1)
  419.     #  end
  420.     #end
  421.     if @active_battler.is_a?(Game_Actor) and @active_battler.skill_up != false
  422.       @skillup = true
  423.       @skill_up_window = Window_Skillup.new(@active_battler)
  424.       if SKILLUP_SE != nil
  425.         Audio.se_play("Audio/SE/" + SKILLUP_SE)
  426.         sleep(0.1)
  427.       end
  428.     end
  429.     update_phase4_step3_skillup
  430.   end

  431.   #--------------------------------------------------------------
  432.   # ● フレーム更新 (メインフェーズ ステップ 5 : ダメージ表示)
  433.   #--------------------------------------------------------------
  434.   alias update_phase4_step5_skillup update_phase4_step5
  435.   def update_phase4_step5
  436.     #if @active_battler.is_a?(Game_Actor) and @skillup
  437.     #  @skill_up_window.dispose
  438.     #  @active_battler.skill_up = false
  439.     #  @skillup = false
  440.     #end
  441.     if @active_battler.is_a?(Game_Actor) and @skillup
  442.       @skill_up_window.dispose
  443.       @active_battler.skill_up = false
  444.       @skillup = false
  445.     end
  446.     update_phase4_step5_skillup     # 原物
  447.   end

  448.   #---------------------------------------------------------------
  449.   # ● フレーム更新
  450.   #----------------------------------------------------------------
  451.   alias update_skillup update
  452.   def update
  453.     if @active_battler.is_a?(Game_Actor) and @active_battler.skill_up and @skillup
  454.       @skill_up_window.contents_opacity -= 4
  455.     end
  456.     update_skillup              # 原物
  457.   end
  458.   end # if SHOW_SKILL_LV_UP
  459. end

  460. class Window_Skillup < Window_Base
  461.   #--------------------------------------------------------------
  462.   # ● オブジェクト初期化
  463.   #     actor : アクター
  464.   #-------------------------------------------------------------
  465.   def initialize(actor)
  466.     super(actor.screen_x-140, 260, 250, 64)
  467.     self.contents = Bitmap.new(width - 32, height - 32)
  468.     self.opacity = 0
  469.     self.contents.font.color = Color.new(255, 64, 0)
  470.     self.contents.draw_text(80, 0, 150, 32, "Skill LvUp!")
  471.   end
  472. end



  473. #====================================================================
  474. # 以下、再定義部分を含む(SP消費減少の機能がいらないなら消してもOK)
  475. #====================================================================
  476. class Window_Skill < Window_Selectable
  477.   #----------------------------------------------------------------
  478.   # ● 項目の描画
  479.   #     index : 項目番号
  480.   #-----------------------------------------------------------------
  481.   def draw_item(index)
  482.     skill = @data[index]
  483.     if @actor.skill_can_use?(skill.id)
  484.       self.contents.font.color = normal_color
  485.     else
  486.       self.contents.font.color = disabled_color
  487.     end
  488.     x = 4 + index % 2 * (288 + 32)
  489.     y = index / 2 * 32
  490.     rect = Rect.new(x, y, self.width / @column_max - 32, 32)
  491.     self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
  492.     bitmap = RPG::Cache.icon(skill.icon_name)
  493.     opacity = self.contents.font.color == normal_color ? 255 : 128
  494.     self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24), opacity)
  495. #-修正-----
  496.     @actor.skill_level[skill.id] = 0 if @actor.skill_level[skill.id] == nil
  497.     name_level = skill.name + "(Lv" + @actor.skill_level[skill.id].to_s + ")"
  498.     self.contents.draw_text(x + 28, y, 204, 32, name_level, 0)
  499.     @actor.skill_sp_cost[skill.id] = skill.sp_cost if @actor.skill_sp_cost[skill.id] == nil
  500.     self.contents.draw_text(x + 232, y, 48, 32, @actor.skill_sp_cost[skill.id].to_s, 2)
  501. #----------
  502.   end
  503. end

  504. class Scene_Skill
  505.   #----------------------------------------------------------
  506.   # ● フレーム更新 (ターゲットウィンドウがアクティブの場合)
  507.   #-------------------------------------------------------------
  508.   def update_target
  509.     # B ボタンが押された場合
  510.     if Input.trigger?(Input::B)
  511.       # キャンセル SE を演奏
  512.       $game_system.se_play($data_system.cancel_se)
  513.       # ターゲットウィンドウを消去
  514.       @skill_window.active = true
  515.       @target_window.visible = false
  516.       @target_window.active = false
  517.       return
  518.     end
  519.     # C ボタンが押された場合
  520.     if Input.trigger?(Input::C)
  521.       # SP 切れなどで使用できなくなった場合
  522.       unless @actor.skill_can_use?(@skill.id)
  523.         # ブザー SE を演奏
  524.         $game_system.se_play($data_system.buzzer_se)
  525.         return
  526.       end
  527.       # ターゲットが全体の場合
  528.       if @target_window.index == -1
  529.         # パーティ全体にスキルの使用効果を適用
  530.         used = false
  531.         for i in $game_party.actors
  532.           used |= i.skill_effect(@actor, @skill)
  533.         end
  534.       end
  535.       # ターゲットが使用者の場合
  536.       if @target_window.index <= -2
  537.         # ターゲットのアクターにスキルの使用効果を適用
  538.         target = $game_party.actors[@target_window.index + 10]
  539.         used = target.skill_effect(@actor, @skill)
  540.       end
  541.       # ターゲットが単体の場合
  542.       if @target_window.index >= 0
  543.         # ターゲットのアクターにスキルの使用効果を適用
  544.         target = $game_party.actors[@target_window.index]
  545.         used = target.skill_effect(@actor, @skill)
  546.       end
  547.       # スキルを使った場合
  548.       if used
  549.         # スキルの使用時 SE を演奏
  550.         $game_system.se_play(@skill.menu_se)
  551. #-----修正---------------------------------------------
  552.         @actor.skill_sp_cost[@skill.id] = @skill.sp_cost if @actor.skill_sp_cost[@skill.id] == nil
  553.         # SP 消費
  554.         @actor.sp -= @actor.skill_sp_cost[@skill.id]
  555. #------------------------------------------------
  556.         # 各ウィンドウの内容を再作成
  557.         @status_window.refresh
  558.         @skill_window.refresh
  559.         @target_window.refresh
  560.         # 全滅の場合
  561.         if $game_party.all_dead?
  562.           # ゲームオーバー画面に切り替え
  563.           $scene = Scene_Gameover.new
  564.           return
  565.         end
  566.         # コモンイベント ID が有効の場合
  567.         if @skill.common_event_id > 0
  568.           # コモンイベント呼び出し予約
  569.           $game_temp.common_event_id = @skill.common_event_id
  570.           # マップ画面に切り替え
  571.           $scene = Scene_Map.new
  572.           return
  573.         end
  574.       end
  575.       # スキルを使わなかった場合
  576.       unless used
  577.         # ブザー SE を演奏
  578.         $game_system.se_play($data_system.buzzer_se)
  579.       end
  580.       return
  581.     end
  582.   end
  583. end

  584. class Scene_Battle
  585.   include Skill_updata
  586.   #------------------------------------------------------
  587.   # ● スキルアクション 結果作成
  588.   #-------------------------------------------------------
  589.   alias make_skill_action_result_skill_update make_skill_action_result
  590.   def make_skill_action_result(battler, plus_id)
  591.     make_skill_action_result_skill_update(battler, plus_id)
  592.     # SP 消費
  593.     if SP_COST_DOWN and @active_battler.is_a?(Game_Actor)
  594.       @active_battler.sp += @skill.sp_cost
  595.       @active_battler.sp -= @active_battler.skill_sp_cost[@skill.id]
  596.     end
  597.   end
  598. end

  599. class Game_Battler
  600.   #--------------------------------------------------------
  601.   # ● スキルの使用可能判定
  602.   #     skill_id : スキル ID
  603.   #------------------------------------------------------
  604.   alias skill_update_can_use? skill_can_use?
  605.   def skill_can_use?(skill_id)
  606.     ret = skill_update_can_use?(skill_id)
  607.     if !ret and SP_COST_DOWN
  608.       # SP が足りない場合は使用不可となった?
  609.       if $data_skills[skill_id].sp_cost > self.sp
  610.         if self.is_a?(Game_Actor)
  611.           skill_sp_cost = self.skill_sp_cost[skill_id]
  612.           if skill_sp_cost < self.sp
  613.             ret = true
  614.           end
  615.         end
  616.       end
  617.     end
  618.     return ret
  619.   end
  620. end

  621. #===============================================================
  622. # イベントスクリプト操作
  623. #===============================================================
  624. class Interpreter
  625.   include Skill_updata
  626.   #-----------------------------------------------------------
  627.   # ● スキルレベル設定(レベルセット)
  628.   #     actor_id  :   アクターID
  629.   #     skill_id  :   スキルID
  630.   #     level     :   設定レベル
  631.   #-----------------------------------------------------------
  632.   def set_skill_level(actor_id, skill_id, level)
  633.     actor = $game_actors[actor_id]
  634.     skill = $data_skills[skill_id]
  635.     # リミット取得
  636.     limit = S_LEVEL[skill_id]
  637.     s_limit = ( (limit != nil and limit[actor.id] != nil) ? limit[actor.id] : LEVEL_LIMIT)
  638.     if level > s_limit or level < 0
  639.       return
  640.     end
  641.     # レベル
  642.     actor.skill_level[skill.id] = level
  643.     # 使用回数
  644.     use_list = actor.skill_list[skill.id]
  645.     actor.skill_use[skill.id] = use_list[level]
  646.     # 威力を再計算
  647.     if SKILL_MIGHT_UP
  648.       actor.skill_power[skill.id] = skill.power
  649.       might = S_MIGHT[skill.id]
  650.       might_rate = ((might != nil and might[actor.id] != nil) ? might[actor.id] : MIGHT_RATE)
  651.       for i in 0...level
  652.         actor.skill_power[skill.id] += skill.power * might_rate / 100
  653.         actor.skill_power[skill.id] = actor.skill_power[skill.id].truncate
  654.       end
  655.     end
  656.     # SP消費再計算
  657.     if SP_COST_DOWN
  658.       actor.skill_sp_cost[skill.id] = skill.sp_cost
  659.       cost = S_COST[skill.id]
  660.       cost_rate = ((cost != nil and cost[actor.id] != nil) ? cost[actor.id] : COST_RATE)
  661.       for i in 0...level
  662.         actor.skill_sp_cost[skill.id] -= skill.sp_cost * cost_rate / 100
  663.         actor.skill_sp_cost[skill.id] = actor.skill_sp_cost[skill.id].truncate
  664.       end
  665.       # SP消費が0以下はありえない
  666.       if actor.skill_sp_cost[skill.id] < 0
  667.         actor.skill_sp_cost[skill.id] = 0
  668.       end
  669.     end
  670.     # 命中率再計算
  671.     if SKILL_HIT_UP
  672.       actor.skill_hit[skill.id] = skill.hit
  673.       hit = S_HIT[skill.id]
  674.       hit_rate = ((hit != nil and hit[actor.id] != nil) ? hit[actor.id] : HIT_RATE)
  675.       for i in 0...level
  676.         actor.skill_hit[skill.id] += skill.hit * hit_rate / 100
  677.         actor.skill_hit[skill.id] = actor.skill_hit[skill.id].truncate
  678.       end
  679.       # 100以上はありえない
  680.       if actor.skill_hit[skill.id] > 100
  681.         actor.skill_hit[skill.id] = 100
  682.       end
  683.     end
  684.     for state in skill.plus_state_set
  685.           actor.state_holdturn[state] += 1
  686.         end
  687.   end
  688.   
  689.   #---------------------------------------------------------
  690.   # ● スキルレベル設定(レベルアップ)
  691.   #     actor_id  :   アクターID
  692.   #     skill_id  :   スキルID
  693.   #--------------------------------------------------------
  694.   def skill_level_up(actor_id, skill_id)
  695.     actor = $game_actors[actor_id]
  696.     set_skill_level(actor_id, skill_id, actor.skill_level[skill_id]+1)
  697.   end
  698.   
  699.   #-------------------------------------------------------
  700.   # ● スキルレベル設定(レベルダウン)
  701.   #     actor_id  :   アクターID
  702.   #     skill_id  :   スキルID
  703.   #--------------------------------------------------------
  704.   def skill_level_down(actor_id, skill_id)
  705.     actor = $game_actors[actor_id]
  706.     set_skill_level(actor_id, skill_id, actor.skill_level[skill_id]-1)
  707.   end
  708. end

  709. #==================================================================
  710. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  711. #==================================================================

复制代码

不常在线,有事PM
回复 支持 反对

使用道具 举报

Lv1.梦旅人

冰王子

梦石
0
星屑
50
在线时间
34 小时
注册时间
2008-1-27
帖子
1875
3
 楼主| 发表于 2008-3-19 22:17:33 | 只看该作者
不是连贴,是放不开
RTAB版血槽
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================


  4. # ————————————————————————————————————

  5. # HP/SP/EXPゲージ表示スクリプト Ver 1.00
  6. # 配布元・サポートURL
  7. # http://members.jcom.home.ne.jp/cogwheel/

  8. #==============================================================================
  9. # ■ Game_Actor
  10. #------------------------------------------------------------------------------
  11. #  アクターを扱うクラスです。このクラスは Game_Actors クラス ($game_actors)
  12. # の内部で使用され、Game_Party クラス ($game_party) からも参照されます。
  13. #==============================================================================

  14. class Game_Actor < Game_Battler
  15.   def now_exp
  16.     return @exp - @exp_list[@level]
  17.   end
  18.   def next_exp
  19.     return @exp_list[@level+1] > 0 ? @exp_list[@level+1] - @exp_list[@level] : 0
  20.   end
  21. end

  22. #==============================================================================
  23. # ■ Window_Base
  24. #------------------------------------------------------------------------------
  25. #  ゲーム中のすべてのウィンドウのスーパークラスです。
  26. #==============================================================================

  27. class Window_Base < Window
  28.   #--------------------------------------------------------------------------
  29.   # ● HP ゲージの描画
  30.   #--------------------------------------------------------------------------
  31.   # オリジナルのHP描画を draw_actor_hp_original と名前変更
  32.   alias :draw_actor_hp_original :draw_actor_hp
  33.   def draw_actor_hp(actor, x, y, width = 144)
  34.     # 変数rateに 現在のHP/MHPを代入
  35.     if actor.maxhp != 0
  36.       rate = actor.hp.to_f / actor.maxhp
  37.     else
  38.       rate = 0
  39.     end
  40.     # plus_x:X座標の位置補正 rate_x:X座標の位置補正(%) plus_y:Y座標の位置補正
  41.     # plus_width:幅の補正 rate_width:幅の補正(%) height:縦幅
  42.     # align1:描画タイプ1 0:左詰め 1:中央揃え 2:右詰め
  43.     # align2:描画タイプ2 0:上詰め 1:中央揃え 2:下詰め
  44.     # align3:ゲージタイプ 0:左詰め 1:右詰め
  45.     plus_x = 0
  46.     rate_x = 0
  47.     plus_y = 25
  48.     plus_width = 0
  49.     rate_width = 95
  50.     height = 10
  51.     align1 = 1
  52.     align2 = 2
  53.     align3 = 0
  54.     # グラデーション設定 grade1:空ゲージ grade2:実ゲージ
  55.     # (0:横にグラデーション 1:縦にグラデーション 2:斜めにグラデーション(激重))
  56.     grade1 = 1
  57.     grade2 = 0
  58.     # 色設定。color1:外枠,color2:中枠
  59.     # color3:空ゲージダークカラー,color4:空ゲージライトカラー
  60.     # color5:実ゲージダークカラー,color6:実ゲージライトカラー
  61.     color1 = Color.new(0, 0, 0, 192)
  62.     color2 = Color.new(255, 255, 192, 192)
  63.     color3 = Color.new(0, 0, 0, 192)
  64.     color4 = Color.new(64, 0, 0, 192)
  65.     color5 = Color.new(80 - 24 * rate, 80 * rate, 14 * rate, 192)
  66.     color6 = Color.new(240 - 72 * rate, 240 * rate, 62 * rate, 192)
  67.     # 変数spに描画するゲージの幅を代入
  68.     if actor.maxhp != 0
  69.       hp = (width + plus_width) * actor.hp * rate_width / 100 / actor.maxhp
  70.     else
  71.       hp = 0
  72.     end
  73.     # ゲージの描画
  74.     gauge_rect(x + plus_x + width * rate_x / 100, y + plus_y,
  75.                 width, plus_width + width * rate_width / 100,
  76.                 height, hp, align1, align2, align3,
  77.                 color1, color2, color3, color4, color5, color6, grade1, grade2)
  78.     # オリジナルのHP描画処理を呼び出し
  79.     if actor.is_a?(Game_Actor)
  80.     draw_actor_hp_original(actor, x, y, width)
  81.     end
  82.   end
  83.   #--------------------------------------------------------------------------
  84.   # ● SP ゲージの描画
  85.   #--------------------------------------------------------------------------
  86.   # オリジナルのSP描画を draw_actor_sp_original と名前変更
  87.   alias :draw_actor_sp_original :draw_actor_sp
  88.   def draw_actor_sp(actor, x, y, width = 144)
  89.     # 変数rateに 現在のSP/MSPを代入
  90.     if actor.maxsp != 0
  91.       rate = actor.sp.to_f / actor.maxsp
  92.     else
  93.       rate = 1
  94.     end
  95.     # plus_x:X座標の位置補正 rate_x:X座標の位置補正(%) plus_y:Y座標の位置補正
  96.     # plus_width:幅の補正 rate_width:幅の補正(%) height:縦幅
  97.     # align1:描画タイプ1 0:左詰め 1:中央揃え 2:右詰め
  98.     # align2:描画タイプ2 0:上詰め 1:中央揃え 2:下詰め
  99.     # align3:ゲージタイプ 0:左詰め 1:右詰め
  100.     plus_x = 0
  101.     rate_x = 0
  102.     plus_y = 25
  103.     plus_width = 0
  104.     rate_width = 95
  105.     height = 10
  106.     align1 = 1
  107.     align2 = 2
  108.     align3 = 0
  109.     # グラデーション設定 grade1:空ゲージ grade2:実ゲージ
  110.     # (0:横にグラデーション 1:縦にグラデーション 2:斜めにグラデーション(激重))
  111.     grade1 = 1
  112.     grade2 = 0
  113.     # 色設定。color1:外枠,color2:中枠
  114.     # color3:空ゲージダークカラー,color4:空ゲージライトカラー
  115.     # color5:実ゲージダークカラー,color6:実ゲージライトカラー
  116.     color1 = Color.new(0, 0, 0, 192)
  117.     color2 = Color.new(255, 255, 192, 192)
  118.     color3 = Color.new(0, 0, 0, 192)
  119.     color4 = Color.new(0, 64, 0, 192)
  120.     color5 = Color.new(14 * rate, 80 - 24 * rate, 80 * rate, 192)
  121.     color6 = Color.new(62 * rate, 240 - 72 * rate, 240 * rate, 192)
  122.     # 変数spに描画するゲージの幅を代入
  123.     if actor.maxsp != 0
  124.       sp = (width + plus_width) * actor.sp * rate_width / 100 / actor.maxsp
  125.     else
  126.       sp = (width + plus_width) * rate_width / 100
  127.     end
  128.     # ゲージの描画
  129.     gauge_rect(x + plus_x + width * rate_x / 100, y + plus_y,
  130.                 width, plus_width + width * rate_width / 100,
  131.                 height, sp, align1, align2, align3,
  132.                 color1, color2, color3, color4, color5, color6, grade1, grade2)
  133.     # オリジナルのSP描画処理を呼び出し
  134.     if actor.is_a?(Game_Actor)
  135.     draw_actor_sp_original(actor, x, y, width)
  136.     end
  137.   end
  138.   #--------------------------------------------------------------------------
  139.   # ● EXP ゲージの描画
  140.   #--------------------------------------------------------------------------
  141.   # オリジナルのEXP描画を draw_actor_sp_original と名前変更
  142.   alias :draw_actor_exp_original :draw_actor_exp
  143.   def draw_actor_exp(actor, x, y, width = 204)
  144.     # 変数rateに 現在のexp/nextexpを代入
  145.     if actor.next_exp != 0
  146.       rate = actor.now_exp.to_f / actor.next_exp
  147.     else
  148.       rate = 1
  149.     end
  150.     # plus_x:X座標の位置補正 rate_x:X座標の位置補正(%) plus_y:Y座標の位置補正
  151.     # plus_width:幅の補正 rate_width:幅の補正(%) height:縦幅
  152.     # align1:描画タイプ1 0:左詰め 1:中央揃え 2:右詰め
  153.     # align2:描画タイプ2 0:上詰め 1:中央揃え 2:下詰め
  154.     # align3:ゲージタイプ 0:左詰め 1:右詰め
  155.     plus_x = 0
  156.     rate_x = 0
  157.     plus_y = 25
  158.     plus_width = 0
  159.     rate_width = 100
  160.     height = 10
  161.     align1 = 1
  162.     align2 = 2
  163.     align3 = 0
  164.     # グラデーション設定 grade1:空ゲージ grade2:実ゲージ
  165.     # (0:横にグラデーション 1:縦にグラデーション 2:斜めにグラデーション(激重))
  166.     grade1 = 1
  167.     grade2 = 0
  168.     # 色設定。color1:外枠,color2:中枠
  169.     # color3:空ゲージダークカラー,color4:空ゲージライトカラー
  170.     # color5:実ゲージダークカラー,color6:実ゲージライトカラー
  171.     color1 = Color.new(0, 0, 0, 192)
  172.     color2 = Color.new(255, 255, 192, 192)
  173.     color3 = Color.new(0, 0, 0, 192)
  174.     color4 = Color.new(64, 0, 0, 192)
  175.     color5 = Color.new(80 * rate, 80 - 80 * rate ** 2, 80 - 80 * rate, 192)
  176.     color6 = Color.new(240 * rate, 240 - 240 * rate ** 2, 240 - 240 * rate, 192)
  177.     # 変数expに描画するゲージの幅を代入
  178.     if actor.next_exp != 0
  179.       exp = (width + plus_width) * actor.now_exp * rate_width /
  180.                                                           100 / actor.next_exp
  181.     else
  182.       exp = (width + plus_width) * rate_width / 100
  183.     end
  184.     # ゲージの描画
  185.     gauge_rect(x + plus_x + width * rate_x / 100, y + plus_y,
  186.                 width, plus_width + width * rate_width / 100,
  187.                 height, exp, align1, align2, align3,
  188.                 color1, color2, color3, color4, color5, color6, grade1, grade2)
  189.     # オリジナルのEXP描画処理を呼び出し
  190.     draw_actor_exp_original(actor, x, y)
  191.   end
  192.   #--------------------------------------------------------------------------
  193.   # ● ゲージの描画
  194.   #--------------------------------------------------------------------------
  195.   def gauge_rect(x, y, rect_width, width, height, gauge, align1, align2, align3,
  196.                 color1, color2, color3, color4, color5, color6, grade1, grade2)
  197.     case align1
  198.     when 1
  199.       x += (rect_width - width) / 2
  200.     when 2
  201.       x += rect_width - width
  202.     end
  203.     case align2
  204.     when 1
  205.       y -= height / 2
  206.     when 2
  207.       y -= height
  208.     end
  209.     # 枠描画
  210.     self.contents.fill_rect(x, y, width, height, color1)
  211.     self.contents.fill_rect(x + 1, y + 1, width - 2, height - 2, color2)
  212.     if align3 == 0
  213.       if grade1 == 2
  214.         grade1 = 3
  215.       end
  216.       if grade2 == 2
  217.         grade2 = 3
  218.       end
  219.     end
  220.     if (align3 == 1 and grade1 == 0) or grade1 > 0
  221.       color = color3
  222.       color3 = color4
  223.       color4 = color
  224.     end
  225.     if (align3 == 1 and grade2 == 0) or grade2 > 0
  226.       color = color5
  227.       color5 = color6
  228.       color6 = color
  229.     end
  230.     # 空ゲージの描画
  231.     self.contents.gradation_rect(x + 2, y + 2, width - 4, height - 4,
  232.                                   color3, color4, grade1)
  233.     if align3 == 1
  234.       x += width - gauge
  235.     end
  236.     # 実ゲージの描画
  237.     self.contents.gradation_rect(x + 2, y + 2, gauge - 4, height - 4,
  238.                                   color5, color6, grade2)
  239.   end
  240. end

  241. #------------------------------------------------------------------------------
  242. #  Bitmapクラスに新たな機能を追加します。
  243. #==============================================================================

  244. class Bitmap
  245.   #--------------------------------------------------------------------------
  246.   # ● 矩形をグラデーション表示
  247.   #     color1 : スタートカラー
  248.   #     color2 : エンドカラー
  249.   #     align  :  0:横にグラデーション
  250.   #               1:縦にグラデーション
  251.   #               2:斜めにグラデーション(激重につき注意)
  252.   #--------------------------------------------------------------------------
  253.   def gradation_rect(x, y, width, height, color1, color2, align = 0)
  254.     if align == 0
  255.       for i in x...x + width
  256.         red   = color1.red + (color2.red - color1.red) * (i - x) / (width - 1)
  257.         green = color1.green +
  258.                 (color2.green - color1.green) * (i - x) / (width - 1)
  259.         blue  = color1.blue +
  260.                 (color2.blue - color1.blue) * (i - x) / (width - 1)
  261.         alpha = color1.alpha +
  262.                 (color2.alpha - color1.alpha) * (i - x) / (width - 1)
  263.         color = Color.new(red, green, blue, alpha)
  264.         fill_rect(i, y, 1, height, color)
  265.       end
  266.     elsif align == 1
  267.       for i in y...y + height
  268.         red   = color1.red +
  269.                 (color2.red - color1.red) * (i - y) / (height - 1)
  270.         green = color1.green +
  271.                 (color2.green - color1.green) * (i - y) / (height - 1)
  272.         blue  = color1.blue +
  273.                 (color2.blue - color1.blue) * (i - y) / (height - 1)
  274.         alpha = color1.alpha +
  275.                 (color2.alpha - color1.alpha) * (i - y) / (height - 1)
  276.         color = Color.new(red, green, blue, alpha)
  277.         fill_rect(x, i, width, 1, color)
  278.       end
  279.     elsif align == 2
  280.       for i in x...x + width
  281.         for j in y...y + height
  282.           red   = color1.red + (color2.red - color1.red) *
  283.                   ((i - x) / (width - 1.0) + (j - y) / (height - 1.0)) / 2
  284.           green = color1.green + (color2.green - color1.green) *
  285.                   ((i - x) / (width - 1.0) + (j - y) / (height - 1.0)) / 2
  286.           blue  = color1.blue + (color2.blue - color1.blue) *
  287.                   ((i - x) / (width - 1.0) + (j - y) / (height - 1.0)) / 2
  288.           alpha = color1.alpha + (color2.alpha - color1.alpha) *
  289.                   ((i - x) / (width - 1.0) + (j - y) / (height - 1.0)) / 2
  290.           color = Color.new(red, green, blue, alpha)
  291.           set_pixel(i, j, color)
  292.         end
  293.       end
  294.     elsif align == 3
  295.       for i in x...x + width
  296.         for j in y...y + height
  297.           red   = color1.red + (color2.red - color1.red) *
  298.                 ((x + width - i) / (width - 1.0) + (j - y) / (height - 1.0)) / 2
  299.           green = color1.green + (color2.green - color1.green) *
  300.                 ((x + width - i) / (width - 1.0) + (j - y) / (height - 1.0)) / 2
  301.           blue  = color1.blue + (color2.blue - color1.blue) *
  302.                 ((x + width - i) / (width - 1.0) + (j - y) / (height - 1.0)) / 2
  303.           alpha = color1.alpha + (color2.alpha - color1.alpha) *
  304.                 ((x + width - i) / (width - 1.0) + (j - y) / (height - 1.0)) / 2
  305.           color = Color.new(red, green, blue, alpha)
  306.           set_pixel(i, j, color)
  307.         end
  308.       end
  309.     end
  310.   end
  311. end

  312. #==============================================================================
  313. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  314. #==============================================================================
复制代码
不常在线,有事PM
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
16 小时
注册时间
2008-2-12
帖子
313
4
发表于 2008-3-19 22:32:33 | 只看该作者
这个功能用在某些人开发的网络版中,很强大。。。。
哎。。。。。。。。。。。。
回复 支持 反对

使用道具 举报

Lv3.寻梦者

酱油的

梦石
0
星屑
1035
在线时间
2161 小时
注册时间
2007-12-22
帖子
3271

贵宾

5
发表于 2008-3-19 22:34:39 | 只看该作者
根本就是在連帖!(指)


正題
特技熟练度升级腳本感覺是鷄肋……建議冰冰還是改寫一個吧.
不做頭像做簽名,看我囧冏有神(多謝山人有情提供 )
回复 支持 反对

使用道具 举报

Lv1.梦旅人

冰王子

梦石
0
星屑
50
在线时间
34 小时
注册时间
2008-1-27
帖子
1875
6
 楼主| 发表于 2008-3-19 22:46:41 | 只看该作者
以下引用禾西于2008-3-19 14:34:39的发言:


特技熟练度升级腳本感覺是鷄肋……建議冰冰還是改寫一個吧.

不觉得有什么问题
说起来只是个依托而已,如果只想打坐升级,全勾上“打坐”好了嘛
不常在线,有事PM
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
46
在线时间
10 小时
注册时间
2007-5-27
帖子
2558

第1届Title华丽大赛新人奖

7
发表于 2008-3-19 23:13:02 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
回复 支持 反对

使用道具 举报

Lv1.梦旅人

冰王子

梦石
0
星屑
50
在线时间
34 小时
注册时间
2008-1-27
帖子
1875
8
 楼主| 发表于 2008-3-19 23:22:35 | 只看该作者
以前在碟摊上看到一个号称复刻黄金英雄传说的游戏,买来一玩,原来是RM做的,而且好像没有打坐功能,非常失望就自己做了个
不常在线,有事PM
回复 支持 反对

使用道具 举报

头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
0 小时
注册时间
2008-2-14
帖子
9
9
发表于 2008-3-20 03:13:17 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
回复 支持 反对

使用道具 举报

Lv5.捕梦者

御灵的宠物

梦石
12
星屑
8438
在线时间
88 小时
注册时间
2006-12-11
帖子
3148

第2届TG大赛亚军

10
发表于 2008-3-20 03:19:40 | 只看该作者
同样的文曲星玩家……
当年练了N久好不容易练到16岁觉得太累就没练下去了,浪费时间OTZ
我的Lofter:http://nightoye.lofter.com/

回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2025-4-5 02:06

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表