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

Project1

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

[已经过期] 一个脚本的修改出问题了 求解

[复制链接]

Lv2.观梦者

梦石
0
星屑
723
在线时间
530 小时
注册时间
2010-6-9
帖子
840
跳转到指定楼层
1
发表于 2010-7-12 06:12:11 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

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

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

x
本帖最后由 负零 于 2010-7-12 07:13 编辑

这脚本大家应该熟悉了...我尝试修改多加个选项,多加个选项,测试... 别看数值谢谢
  1.     #=========================================================================
  2.     # 每提升一次魔力值,提升多少附加能力
  3.     #=========================================================================
  4.     @mp_spi = +5000       # 每提升一次体力提升多少HP
  5.     @mp_atk = 500   # 每提升一次体力提升多少力量
  6.     @mp_def = 500   # 每提升一次体力提升多少速度
  7.     @mp_agi = 500   # 每提升一次体力提升多少灵巧
  8.     @mp_hp = 500# 每提升一次体力提升多少魔力
  9.     @mp_mp = +5000
复制代码
问题来了 当我这样表达的时候 选择【 每提升一次魔力值,提升多少附加能力】这项时 不是加点 而是回到了地图 似乎执行了 $scene = Scene_Map.new 误了 求解...需要病工程吗?
  1.     #=============================================================
  2.     # 按下 B 键的情况下
  3.     #=============================================================
  4.     if Input.trigger?(Input::B)
  5.       # 演奏取消 SE
  6.       Sound.play_cancel
  7.       # 切换到地图画面
  8.       $scene = Scene_Map.new
  9.       return
  10.     end
  11.     #=============================================================
  12.     # 按下 C 键的情况下
  13.     #=============================================================
  14.     if Input.trigger?(Input::C)      
  15.       if @command_window.index == 5
  16.           # 演奏确定 SE
  17.         Sound.play_decision
  18.         # 将角色的剩余点数带回
  19.         $game_variables[@actor.id + LEVEL_UP_VARIABLE] = $point
  20.         # 将角色点数实际加上
  21.         @actor.atk += $temp_atk
  22.         @actor.def += $temp_def
  23.         @actor.agi += $temp_agi
  24.         @actor.spi += $temp_spi
  25.         @actor.maxhp += $temp_hp
  26.         @actor.maxmp += $temp_mp
  27.         # 切换到地图画面
  28.         $scene = Scene_Map.new
  29.         return
  30.       end
  31.       if @command_window.index == 6
  32.           # 演奏确定 SE
  33.         Sound.play_decision
  34.           # 将角色的剩余点数带入
  35.         $point = $game_variables[@actor.id + LEVEL_UP_VARIABLE]   
  36.           # 初始化临时量
  37.         $temp_atk = 0
  38.         $temp_def = 0
  39.         $temp_agi = 0
  40.         $temp_spi = 0
  41.         $temp_hp = 0
  42.         $temp_mp = 0
  43.         @lvup_window.refresh
  44.         @lvpoint_window.refresh
  45.         return
  46.       end
  47.       if $point == 0
  48.         # 演奏冻结 SE
  49.         Sound.play_buzzer
  50.         return
  51.       end
  52.       case @command_window.index
  53.       when 0
  54.         # 演奏确定 SE
  55.         Sound.play_decision
  56.         $temp_hp += @hp
  57.         $temp_mp += @mp
  58.         $temp_atk += @hp_atk
  59.         $temp_def += @hp_def
  60.         $temp_agi += @hp_agi
  61.         $temp_spi += @hp_spi
  62.         $point -= 1
  63.         @lvup_window.refresh
  64.         @lvpoint_window.refresh
  65.         s_disable
  66.         return
  67.       when 1
  68.         # 演奏确定 SE
  69.         Sound.play_decision
  70.         $temp_atk += @atk_atk
  71.         $temp_hp += @atk_hp
  72.         $temp_mp += @atk_mp
  73.         $temp_def += @atk_def
  74.         $temp_agi += @atk_agi
  75.         $temp_spi += @atk_spi
  76.         $point -= 1
  77.         @lvup_window.refresh
  78.         @lvpoint_window.refresh
  79.         s_disable
  80.         return
  81.       when 2
  82.         # 演奏确定 SE
  83.         Sound.play_decision
  84.         $temp_def += @def_def
  85.         $temp_hp += @def_hp
  86.         $temp_mp += @def_mp
  87.         $temp_atk += @def_atk
  88.         $temp_agi += @def_agi
  89.         $temp_spi += @def_spi
  90.         $point -= 1
  91.         @lvup_window.refresh
  92.         @lvpoint_window.refresh
  93.         s_disable
  94.         return
  95.       when 3
  96.         # 演奏确定 SE
  97.         Sound.play_decision
  98.         $temp_agi += @agi_agi
  99.         $temp_hp += @agi_hp
  100.         $temp_mp += @agi_mp
  101.         $temp_atk += @agi_atk
  102.         $temp_def += @agi_def
  103.         $temp_spi += @agi_spi
  104.         $point -= 1
  105.         @lvup_window.refresh
  106.         @lvpoint_window.refresh
  107.         s_disable
  108.         return
  109.       when 4
  110.         # 演奏确定 SE
  111.         Sound.play_decision
  112.         $temp_spi += @spi_spi
  113.         $temp_hp += @spi_hp
  114.         $temp_mp += @spi_mp
  115.         $temp_atk += @spi_atk
  116.         $temp_def += @spi_def
  117.         $temp_agi += @spi_agi
  118.         $point -= 1
  119.         @lvup_window.refresh
  120.         @lvpoint_window.refresh
  121.         s_disable
  122.         return
  123.       when 5
  124.         # 演奏确定 SE
  125.         Sound.play_decision
  126.         $temp_mp += @mp_mp
  127.         $temp_spi += @mp_spi
  128.         $temp_atk += @mp_atk
  129.         $temp_def += @mp_def
  130.         $temp_agi += @mp_agi
  131.         $temp_hp += @mp_hp
  132.         $point -= 1
  133.         @lvup_window.refresh
  134.         @lvpoint_window.refresh
  135.         s_disable
  136.         return
  137.       end
  138.     end
复制代码
以下是完整脚本 修改后的
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================

  4. # 脚本使用设定:

  5. LEVEL_UP_POINT = 100  # 每升一级所增加的点数
  6. LEVEL_UP_VARIABLE = 202  # 储存角色点数的变量编号与角色id编号的差值
  7.                          # 默认情况 = 100,
  8.                          # 则是数据库里1号角色的加点数存于101号变量
  9.                          # 3号角色的加点数存于103号变量。
  10.                          # 你可以直接操作变量赠与角色可分配点数

  11. # 每增加一次点数,各项能力值的变化:357-410行
  12.                         
  13. # 使用方法介绍:

  14. # 本脚本不会取代原来的升级自动加点 也就是说,默认的升级还在,但可以用这个功能手动追加点数。
  15. # 如果你想纯粹使用手动加点(而升级不提升能力),只要把数据库中角色升级能力,
  16. # 1-99级全部等于一个相同数值就行了。

  17. # 呼唤加点场景的方法:$scene = Scene_Lvup.new(角色编号,返回菜单编号)。
  18. # 默认都是0号

  19. # 加点场景中,page up,page down换人,如果想加点完毕后返回地图,
  20. # 464行$scene = Scene_Menu.new(0)改为$scene = Scene_Map.new

  21. # 推荐脚本搭配:魔法商店脚本,两者结合,制作自由型RPG

  22. #==============================================================================
  23. # ■ Window_Command
  24. #------------------------------------------------------------------------------
  25. #  一般的命令选择行窗口。(追加定义)
  26. #==============================================================================
  27. class Window_Command < Window_Selectable
  28.   #--------------------------------------------------------------------------
  29.   # ● 项目有效化
  30.   #     index : 项目编号
  31.   #--------------------------------------------------------------------------
  32.   def able_item(index)
  33.     draw_item(index, normal_color)
  34.   end
  35. end
  36. #==============================================================================
  37. # ■ Game_Actor
  38. #------------------------------------------------------------------------------
  39. #  处理角色的类。(再定义)
  40. #==============================================================================

  41. class Game_Actor < Game_Battler
  42.   def level_up
  43.     @level += 1
  44.     $game_variables[self.id + LEVEL_UP_VARIABLE] += LEVEL_UP_POINT
  45.     for learning in self.class.learnings
  46.       learn_skill(learning.skill_id) if learning.level == @level
  47.     end
  48.   end
  49. end
  50. #==============================================================================
  51. # ■ Window_Base
  52. #------------------------------------------------------------------------------
  53. #  游戏中全部窗口的超级类(追加定义)
  54. #==============================================================================
  55. class Window_Base < Window
  56.   #--------------------------------------------------------------------------
  57.   # ● 描绘 HP
  58.   #     actor : 角色
  59.   #     x     : 描画目标 X 坐标
  60.   #     y     : 描画目标 Y 坐标
  61.   #     width : 描画目标的宽
  62.   #--------------------------------------------------------------------------
  63.   def draw_actor_hp_lvup(actor, x, y)
  64.     self.contents.font.color = system_color
  65.     self.contents.draw_text(x , y, 96, 32, "最大" + Vocab::hp)
  66.     if $temp_hp == 0
  67.       self.contents.font.color = normal_color
  68.       self.contents.draw_text(x + 120 , y, 48, 32, actor.maxhp.to_s, 2)
  69.     else
  70.       maxhp = actor.maxhp + $temp_hp
  71.       self.contents.font.color = Color.new(255, 128, 128, 255)
  72.       self.contents.draw_text(x + 120 , y, 48, 32, maxhp.to_s ,2)
  73.       self.contents.font.color = normal_color      
  74.       self.contents.draw_text(x + 155, y, 36, 32, "( ", 2)
  75.       if $temp_hp >=0
  76.         self.contents.font.color = Color.new(255, 128, 128, 255)
  77.         self.contents.draw_text(x + 155, y, 36, 32, " +",2)
  78.       else
  79.         self.contents.font.color = Color.new(255,255,0,255)
  80.         self.contents.draw_text(x + 155, y, 36, 32, " -",2)
  81.       end
  82.       self.contents.draw_text(x + 200, y, 36, 32, $temp_hp.to_s, 2)
  83.       self.contents.font.color = normal_color
  84.       self.contents.draw_text(x + 215, y, 36, 32, ")", 2)
  85.     end
  86.   end
  87.   #--------------------------------------------------------------------------
  88.   # ● 描绘 MP
  89.   #     actor : 角色
  90.   #     x     : 描画目标 X 坐标
  91.   #     y     : 描画目标 Y 坐标
  92.   #     width : 描画目标的宽
  93.   #--------------------------------------------------------------------------
  94.   def draw_actor_mp_lvup(actor, x, y)
  95.     self.contents.font.color = system_color
  96.     self.contents.draw_text(x , y, 96, 32, "最大" + Vocab::mp)
  97.     if $temp_mp == 0
  98.       self.contents.font.color = normal_color
  99.       self.contents.draw_text(x + 120 , y, 48, 32, actor.maxmp.to_s, 2)
  100.     else
  101.       maxmp = actor.maxmp + $temp_mp
  102.       self.contents.font.color = Color.new(255, 128, 128, 255)
  103.       self.contents.draw_text(x + 120 , y, 48, 32, maxmp.to_s ,2)
  104.       self.contents.font.color = normal_color      
  105.       self.contents.draw_text(x + 155, y, 36, 32, "( ", 2)
  106.       if $temp_mp >=0
  107.         self.contents.font.color = Color.new(255, 128, 128, 255)
  108.         self.contents.draw_text(x + 155, y, 36, 32, " +",2)
  109.       else
  110.         self.contents.font.color = Color.new(255,255,0,255)
  111.         self.contents.draw_text(x + 155, y, 36, 32, " -",2)
  112.       end
  113.       self.contents.draw_text(x + 200, y, 36, 32, $temp_mp.to_s, 2)
  114.       self.contents.font.color = normal_color
  115.       self.contents.draw_text(x + 215, y, 36, 32, ")", 2)
  116.     end
  117.   end
  118.   #--------------------------------------------------------------------------
  119.   # ● 描绘能力值
  120.   #     actor : 角色
  121.   #     x     : 描画目标 X 坐标
  122.   #     y     : 描画目标 Y 坐标
  123.   #     type  : 能力值种类 (0~4)
  124.   #--------------------------------------------------------------------------
  125.   def draw_actor_lvup(actor, x, y, type)   
  126.     # 定义数字颜色
  127.     lvup = normal_color
  128.     upcolor = Color.new(255, 128, 128, 255)
  129.     self.contents.font.color = normal_color   
  130.     case type
  131.     when 0
  132.       parameter_name = Vocab::atk
  133.       parameter_value = actor.atk
  134.       parameter_value_temp = parameter_value + $temp_atk
  135.       if $temp_atk != 0
  136.         lvup = upcolor
  137.         self.contents.draw_text(x + 256, y, 16, 32, "(")
  138.         if $temp_atk >= 0
  139.           self.contents.font.color = lvup
  140.           self.contents.draw_text(x + 272, y, 80, 32, "+",0)
  141.         else
  142.           self.contents.font.color = Color.new(255,255,0,255)
  143.           self.contents.draw_text(x + 272, y, 80, 32, "-",0)
  144.         end        
  145.         self.contents.draw_text(x + 272, y, 80, 32, $temp_atk.abs.to_s,1)
  146.         self.contents.font.color = normal_color
  147.         self.contents.draw_text(x + 272, y, 80, 32, ")", 2)
  148.       end
  149.     when 1
  150.       parameter_name = Vocab::def
  151.       parameter_value = actor.def
  152.       parameter_value_temp = parameter_value + $temp_def
  153.       if $temp_def != 0
  154.         lvup = upcolor
  155.         self.contents.draw_text(x + 256, y, 16, 32, "(")
  156.         if $temp_def >= 0
  157.           self.contents.font.color = lvup
  158.           self.contents.draw_text(x + 272, y, 80, 32, "+",0)
  159.         else
  160.           self.contents.font.color = Color.new(255,255,0,255)
  161.           self.contents.draw_text(x + 272, y, 80, 32, "-",0)
  162.         end        
  163.         self.contents.draw_text(x + 272, y, 80, 32, $temp_def.abs.to_s,1)
  164.         self.contents.font.color = normal_color
  165.         self.contents.draw_text(x + 272, y, 80, 32, ")", 2)
  166.       end
  167.     when 2
  168.       parameter_name = Vocab::agi
  169.       parameter_value = actor.agi
  170.       parameter_value_temp = parameter_value + $temp_agi
  171.       if $temp_agi != 0
  172.         lvup = upcolor
  173.         self.contents.draw_text(x + 256, y, 16, 32, "(")
  174.         if $temp_agi >= 0
  175.           self.contents.font.color = lvup
  176.           self.contents.draw_text(x + 272, y, 80, 32, "+",0)
  177.         else
  178.           self.contents.font.color = Color.new(255,255,0,255)
  179.           self.contents.draw_text(x + 272, y, 80, 32, "-",0)
  180.         end        
  181.         self.contents.draw_text(x + 272, y, 80, 32, $temp_agi.abs.to_s,1)
  182.         self.contents.font.color = normal_color
  183.         self.contents.draw_text(x + 272, y, 80, 32, ")", 2)
  184.       end
  185.     when 3
  186.       parameter_name = Vocab::spi
  187.       parameter_value = actor.spi
  188.       parameter_value_temp = parameter_value + $temp_spi
  189.       if $temp_spi != 0
  190.         lvup = upcolor
  191.         self.contents.draw_text(x + 256, y, 16, 32, "(")
  192.         if $temp_spi >= 0
  193.           self.contents.font.color = lvup
  194.           self.contents.draw_text(x + 272, y, 80, 32, "+",0)
  195.         else
  196.           self.contents.font.color = Color.new(255,255,0,255)
  197.           self.contents.draw_text(x + 272, y, 80, 32, "-",0)
  198.         end        
  199.         self.contents.draw_text(x + 272, y, 80, 32, $temp_spi.abs.to_s,1)
  200.         self.contents.font.color = normal_color
  201.         self.contents.draw_text(x + 272, y, 80, 32, ")", 2)
  202.       end
  203.     when 4
  204.       parameter_name = "剩余训练点数"
  205.       parameter_value = $point
  206.       if $point != 0
  207.         lvup = upcolor
  208.       end
  209.     end   
  210.     self.contents.font.size = 16 if type == 4
  211.     self.contents.font.color = system_color
  212.     if type != 4 then
  213.       self.contents.draw_text(x, y, 120, 32, parameter_name)
  214.     else
  215.       self.contents.draw_text(x, y, 120, 24, parameter_name)
  216.     end
  217.     self.contents.font.color = normal_color
  218.     if type != 4
  219.       self.contents.draw_text(x + 120, y, 36, 32, parameter_value.to_s)   
  220.     else
  221.       self.contents.draw_text(x + 100, y, 36, 24, parameter_value.to_s)#剩余点数窗口   
  222.     end
  223.     if type != 4
  224.       self.contents.draw_text(x + 150, y, 36, 32, "→")
  225.     end  
  226.     self.contents.font.color = lvup
  227.     self.contents.draw_text(x + 180, y, 60, 32, parameter_value_temp.to_s)
  228.     self.contents.font.color = normal_color        
  229.   end
  230. end

  231. class Window_Lvpoint < Window_Base
  232.   def initialize
  233.     super(0,198,153,58)#super(0,198,128,58)#加点状态窗口
  234.     refresh
  235.   end
  236.   def refresh
  237.     self.contents.clear
  238.     draw_actor_lvup(@actor, 0, 0, 4)
  239.   end
  240. end
  241. #==============================================================================
  242. # ■ Window_lvup
  243. #------------------------------------------------------------------------------
  244. #  显示升级状态窗口。
  245. #==============================================================================
  246. class Window_Lvup < Window_Base
  247.   #--------------------------------------------------------------------------
  248.   # ● 初始化对像
  249.   #     actor : 角色
  250.   #--------------------------------------------------------------------------
  251.   def initialize(actor)
  252.     super(0, 0, 394, 256)#(0, 0, 416, 256)
  253.     self.contents = Bitmap.new(width - 32, height - 32)
  254.     @actor = actor
  255.     refresh
  256.   end  
  257.   #--------------------------------------------------------------------------
  258.   # ● 刷新
  259.   #--------------------------------------------------------------------------
  260.   def refresh
  261.     self.contents.clear
  262.     draw_actor_graphic(@actor, 30, 80)
  263.     draw_actor_name(@actor, 4, 0)
  264.     draw_actor_class(@actor, 96, 0)
  265.     draw_actor_level(@actor, 224, 0)
  266.     draw_actor_state(@actor, 96, 32)   
  267.     draw_actor_hp_lvup(@actor, 96, 32)
  268.     draw_actor_mp_lvup(@actor, 96, 64)
  269.     draw_actor_lvup(@actor, 4, 96, 0)
  270.     draw_actor_lvup(@actor, 4, 128, 1)
  271.     draw_actor_lvup(@actor, 4, 160, 2)
  272.     draw_actor_lvup(@actor, 4, 192, 3)
  273.   end
  274. end
  275. #==============================================================================
  276. # ■ Window_Help
  277. #------------------------------------------------------------------------------
  278. #  特技及物品的说明、角色的状态显示的窗口。
  279. #==============================================================================
  280. class Window_Lvup_Help < Window_Base
  281.   #--------------------------------------------------------------------------
  282.   # ● 初始化对像
  283.   #--------------------------------------------------------------------------
  284.   def initialize
  285.     super(0, 256, 544, 160)#(0, 256, 544, 160)
  286.     self.contents = Bitmap.new(width - 32, height - 32)
  287.     @test = "" #——这个东西用来检测,节约内存专用
  288.   end  
  289.   #--------------------------------------------------------------------------
  290.   # ● 设置文本
  291.   #--------------------------------------------------------------------------
  292.   def lvup_text(text1, text2 = nil, text3 = nil, text4 = nil)
  293.     if @test != text1
  294.       @test = text1
  295.     else
  296.       return
  297.     end   
  298.     self.contents.clear
  299.     self.contents.font.color = normal_color
  300.     self.contents.draw_text(4, 0, self.width - 40, 32, text1)
  301.     if text2 != nil
  302.       self.contents.draw_text(4 , 32, self.width - 40, 32, text2)
  303.     end
  304.     self.contents.font.size -= 4
  305.     if text3 != nil
  306.       self.contents.draw_text(4 , 64, self.width - 40, 32, text3)
  307.     end
  308.     if text4 != nil
  309.       self.contents.draw_text(4 , 96, self.width - 40, 32, text4)
  310.     end
  311.     self.contents.font.size += 4
  312.   end
  313. end
  314. #==============================================================================
  315. # ■ Scene_lvup
  316. #------------------------------------------------------------------------------
  317. #  处理升级画面的类。
  318. #==============================================================================
  319. class Scene_Lvup
  320.   #--------------------------------------------------------------------------
  321.   # ● 初始化对像
  322.   #     actor_index : 角色索引
  323.   #     menu_index : 选项起始位置
  324.   #--------------------------------------------------------------------------
  325.   def initialize(actor_index = 0 , menu_index = 0)
  326.     @actor_index = actor_index
  327.     @menu_index = menu_index
  328.   end
  329.   #--------------------------------------------------------------------------
  330.   # ● 主处理
  331.   #--------------------------------------------------------------------------
  332.   def main
  333.     s1 = "生命力强化训练"
  334.     s2 = "攻击力强化训练"
  335.     s3 = "防御力强化训练"
  336.     s4 = "敏捷度强化训练"
  337.     s5 = "魔法力强化训练"
  338.     s6 = "魔力值强化训练"
  339.     s7 = "确认增加训练点"
  340.     s8 = "训练点重新分配"
  341.     @command_window = Window_Command.new(153, [s1, s2, s3, s4, s5, s6, s7, s8])#选择窗口
  342.     @command_window.index = @menu_index
  343.     # 获取角色
  344.     @actor = $game_party.members[@actor_index]
  345.     # 将角色的剩余点数带入
  346.     $point = $game_variables[@actor.id + LEVEL_UP_VARIABLE]   
  347.     # 初始化临时量
  348.     $temp_atk = 0
  349.     $temp_def = 0
  350.     $temp_agi = 0
  351.     $temp_spi = 0
  352.     $temp_hp = 0
  353.     $temp_mp = 0
  354.     #=========================================================================
  355.     # 特别提示:这些设置也可以使用小数,但是可能出现0值意外错误
  356.     #  (各种编程语言都有这种意外),建议还是使用整数,正负不限
  357.     #=========================================================================
  358.     # 每提升一次攻击力,提升多少附加能力
  359.     #=========================================================================
  360.     @atk_hp = 300     # 每提升一次力量附加提升多少HP
  361.     @atk_mp = 2     # 每提升一次力量附加提升多少MP
  362.     @atk_def = 1    # 每提升一次力量附加提升多少灵巧
  363.     @atk_agi = 1    # 每提升一次力量附加提升多少速度
  364.     @atk_spi = 0    # 每提升一次力量附加提升多少魔力
  365.     @atk_atk = 5    # 每提升一次力量附加提升多少力量
  366.     #=========================================================================
  367.     # 每提升一次防御力,提升多少附加能力
  368.     #=========================================================================
  369.     @def_hp = 3     # 每提升一次灵巧附加提升多少HP
  370.     @def_mp = 2     # 每提升一次灵巧附加提升多少MP
  371.     @def_atk = 1    # 每提升一次灵巧附加提升多少力量
  372.     @def_agi = 1    # 每提升一次灵巧附加提升多少速度
  373.     @def_spi = 0    # 每提升一次灵巧附加提升多少魔力
  374.     @def_def = 5    # 每提升一次灵巧附加提升多少灵巧
  375.     #=========================================================================
  376.     # 每提升一次敏捷度,提升多少附加能力
  377.     #=========================================================================
  378.     @agi_hp = 3     # 每提升一次速度附加提升多少HP
  379.     @agi_mp = 2     # 每提升一次速度附加提升多少MP
  380.     @agi_atk = 1    # 每提升一次速度附加提升多少力量
  381.     @agi_def = 1    # 每提升一次速度附加提升多少灵巧
  382.     @agi_spi = 0    # 每提升一次速度附加提升多少魔力
  383.     @agi_agi = 5    # 每提升一次速度附加提升多少速度
  384.     #=========================================================================
  385.     # 每提升一次精神力,提升多少附加能力
  386.     #=========================================================================
  387.     @spi_hp = +1     # 每提升一次魔力附加提升多少HP
  388.     @spi_mp = +10    # 每提升一次魔力附加提升多少MP
  389.     @spi_atk = -1   # 每提升一次魔力附加提升多少力量
  390.     @spi_def = -1   # 每提升一次魔力附加提升多少灵巧
  391.     @spi_agi = -1   # 每提升一次魔力附加提升多少速度
  392.     @spi_spi = +10   # 每提升一次魔力附加提升多少魔力
  393.     #=========================================================================
  394.     # 每提升一次魔力值,提升多少附加能力
  395.     #=========================================================================
  396.     @mp_spi = +5000       # 每提升一次体力提升多少HP
  397.     @mp_atk = 500   # 每提升一次体力提升多少力量
  398.     @mp_def = 500   # 每提升一次体力提升多少速度
  399.     @mp_agi = 500   # 每提升一次体力提升多少灵巧
  400.     @mp_hp = 500# 每提升一次体力提升多少魔力
  401.     @mp_mp = +5000
  402.     #=========================================================================
  403.     # 每提升一次生命力,提升多少附加能力
  404.     #=========================================================================
  405.     @hp = +20       # 每提升一次体力提升多少HP
  406.     @mp = +10       # 每提升一次体力提升多少MP
  407.     @hp_atk = -1   # 每提升一次体力提升多少力量
  408.     @hp_def = -1   # 每提升一次体力提升多少速度
  409.     @hp_agi = -1   # 每提升一次体力提升多少灵巧
  410.     @hp_spi = -1   # 每提升一次体力提升多少魔力
  411.    
  412.     # 定义说明文字
  413.     @text_hp_sc = "通过对体能和肉体的强化训练,延长战场上自身生存的时间。"
  414.     @text_atk_sc ="训练格斗技能与剑术,让自己的攻击更富杀伤力"
  415.     @text_def_sc ="练习格挡技能和强化抗击能力,使自己在战斗中可以承受更多的伤害"
  416.     @text_agi_sc ="时刻注意观察周围环境和敌人动向,能更轻易地击中敌人,躲避敌人攻击"
  417.     @text_spi_sc ="放弃对物质的追求,而对精神意识进行强化,让增加自己施放魔法的次数且使魔法更具破坏性"
  418.     @text_save = "确认以上所有训练点数的分配"
  419.     @text_reset= "重新分配训练点数"
  420.     @text_cnb_sc="进行提升魔力值的强化训练,能有更多的魔力用于施放魔法技能"
  421.     @text_2 = "每进行一次此项能力训练,可以改变能力值"
  422.     @text_hp = "最大生命值【HP】"
  423.     @text_mp = "最大魔力值【MP】"
  424.     @text_atk = "攻击力【ATK】"
  425.     @text_def = "防御力【DEF】"
  426.     @text_agi = "敏捷性【AGI】"
  427.     @text_spi = "精神力【SPI】"
  428.     s_disable
  429.     # 生成状态窗口
  430.     @lvup_window = Window_Lvup.new(@actor)
  431.     @lvup_window.x = 150
  432.     @lvup_window.y = 0   
  433.     @lvpoint_window = Window_Lvpoint.new
  434.     # 生成帮助窗口并初始化帮助文本
  435.     @help_window = Window_Lvup_Help.new   
  436.     # 执行过渡
  437.     Graphics.transition
  438.     # 主循环
  439.     loop do
  440.       # 刷新游戏画面
  441.       Graphics.update
  442.       # 刷新输入信息
  443.       Input.update
  444.       # 刷新画面
  445.       update
  446.       # 如果切换画面就中断循环
  447.       if $scene != self
  448.         break
  449.       end
  450.     end
  451.     # 准备过渡
  452.     Graphics.freeze
  453.     # 释放窗口
  454.     @lvpoint_window.dispose
  455.     @command_window.dispose
  456.     @lvup_window.dispose
  457.     @help_window.dispose
  458.   end
  459.   #--------------------------------------------------------------------------
  460.   # ● 刷新画面
  461.   #--------------------------------------------------------------------------
  462.   def update
  463.     # 刷新窗口
  464.     @command_window.update
  465.     # 选项明暗判断(因为太消耗资源,所以屏蔽掉了)
  466.     s_disable
  467.     @lvup_window.update
  468.     #=============================================================
  469.     # 按下 B 键的情况下
  470.     #=============================================================
  471.     if Input.trigger?(Input::B)
  472.       # 演奏取消 SE
  473.       Sound.play_cancel
  474.       # 切换到地图画面
  475.       $scene = Scene_Map.new
  476.       return
  477.     end
  478.     #=============================================================
  479.     # 按下 C 键的情况下
  480.     #=============================================================
  481.     if Input.trigger?(Input::C)      
  482.       if @command_window.index == 5
  483.           # 演奏确定 SE
  484.         Sound.play_decision
  485.         # 将角色的剩余点数带回
  486.         $game_variables[@actor.id + LEVEL_UP_VARIABLE] = $point
  487.         # 将角色点数实际加上
  488.         @actor.atk += $temp_atk
  489.         @actor.def += $temp_def
  490.         @actor.agi += $temp_agi
  491.         @actor.spi += $temp_spi
  492.         @actor.maxhp += $temp_hp
  493.         @actor.maxmp += $temp_mp
  494.         # 切换到地图画面
  495.         $scene = Scene_Map.new
  496.         return
  497.       end
  498.       if @command_window.index == 6
  499.           # 演奏确定 SE
  500.         Sound.play_decision
  501.           # 将角色的剩余点数带入
  502.         $point = $game_variables[@actor.id + LEVEL_UP_VARIABLE]   
  503.           # 初始化临时量
  504.         $temp_atk = 0
  505.         $temp_def = 0
  506.         $temp_agi = 0
  507.         $temp_spi = 0
  508.         $temp_hp = 0
  509.         $temp_mp = 0
  510.         @lvup_window.refresh
  511.         @lvpoint_window.refresh
  512.         return
  513.       end
  514.       if $point == 0
  515.         # 演奏冻结 SE
  516.         Sound.play_buzzer
  517.         return
  518.       end
  519.       case @command_window.index
  520.       when 0
  521.         # 演奏确定 SE
  522.         Sound.play_decision
  523.         $temp_hp += @hp
  524.         $temp_mp += @mp
  525.         $temp_atk += @hp_atk
  526.         $temp_def += @hp_def
  527.         $temp_agi += @hp_agi
  528.         $temp_spi += @hp_spi
  529.         $point -= 1
  530.         @lvup_window.refresh
  531.         @lvpoint_window.refresh
  532.         s_disable
  533.         return
  534.       when 1
  535.         # 演奏确定 SE
  536.         Sound.play_decision
  537.         $temp_atk += @atk_atk
  538.         $temp_hp += @atk_hp
  539.         $temp_mp += @atk_mp
  540.         $temp_def += @atk_def
  541.         $temp_agi += @atk_agi
  542.         $temp_spi += @atk_spi
  543.         $point -= 1
  544.         @lvup_window.refresh
  545.         @lvpoint_window.refresh
  546.         s_disable
  547.         return
  548.       when 2
  549.         # 演奏确定 SE
  550.         Sound.play_decision
  551.         $temp_def += @def_def
  552.         $temp_hp += @def_hp
  553.         $temp_mp += @def_mp
  554.         $temp_atk += @def_atk
  555.         $temp_agi += @def_agi
  556.         $temp_spi += @def_spi
  557.         $point -= 1
  558.         @lvup_window.refresh
  559.         @lvpoint_window.refresh
  560.         s_disable
  561.         return
  562.       when 3
  563.         # 演奏确定 SE
  564.         Sound.play_decision
  565.         $temp_agi += @agi_agi
  566.         $temp_hp += @agi_hp
  567.         $temp_mp += @agi_mp
  568.         $temp_atk += @agi_atk
  569.         $temp_def += @agi_def
  570.         $temp_spi += @agi_spi
  571.         $point -= 1
  572.         @lvup_window.refresh
  573.         @lvpoint_window.refresh
  574.         s_disable
  575.         return
  576.       when 4
  577.         # 演奏确定 SE
  578.         Sound.play_decision
  579.         $temp_spi += @spi_spi
  580.         $temp_hp += @spi_hp
  581.         $temp_mp += @spi_mp
  582.         $temp_atk += @spi_atk
  583.         $temp_def += @spi_def
  584.         $temp_agi += @spi_agi
  585.         $point -= 1
  586.         @lvup_window.refresh
  587.         @lvpoint_window.refresh
  588.         s_disable
  589.         return
  590.       when 5
  591.         # 演奏确定 SE
  592.         Sound.play_decision
  593.         $temp_mp += @mp_mp
  594.         $temp_spi += @mp_spi
  595.         $temp_atk += @mp_atk
  596.         $temp_def += @mp_def
  597.         $temp_agi += @mp_agi
  598.         $temp_hp += @mp_hp
  599.         $point -= 1
  600.         @lvup_window.refresh
  601.         @lvpoint_window.refresh
  602.         s_disable
  603.         return
  604.       end
  605.     end
  606.     #=============================================================
  607.     # 什么都没有按下的情况
  608.     #=============================================================
  609.     case @command_window.index   
  610.     when 0  # 增加体力
  611.       temptext1 = @text_hp + @hp.to_s + "点   " + @text_atk + @hp_atk.to_s + "点   " + @text_def + @hp_def.to_s + "点"
  612.       temptext2 = @text_mp + @mp.to_s + "点   " + @text_agi + @hp_agi.to_s + "点   " + @text_spi + @hp_spi.to_s + "点"
  613.       @help_window.lvup_text(@text_hp_sc , @text_2 , temptext1 , temptext2)
  614.     when 1  # 增加力量
  615.       temptext1 = @text_hp + @atk_hp.to_s + "点   " + @text_atk + @atk_atk.to_s + "点   " + @text_def + @atk_def.to_s + "点"
  616.       temptext2 = @text_mp + @atk_mp.to_s + "点   " + @text_agi + @atk_agi.to_s + "点   " + @text_spi + @atk_spi.to_s + "点"
  617.       @help_window.lvup_text(@text_atk_sc , @text_2 , temptext1 , temptext2)
  618.     when 2  # 增加防御
  619.       temptext1 = @text_hp + @def_hp.to_s + "点   " + @text_atk + @def_agi.to_s + "点   " + @text_def + @def_def.to_s + "点"
  620.       temptext2 = @text_mp + @def_mp.to_s + "点   " + @text_agi + @def_agi.to_s + "点   " + @text_spi + @def_spi.to_s + "点"
  621.       @help_window.lvup_text(@text_def_sc , @text_2 , temptext1 , temptext2)
  622.     when 3  # 增加速度
  623.       temptext1 = @text_hp + @agi_hp.to_s + "点   " + @text_atk + @agi_atk.to_s + "点   " + @text_def + @agi_def.to_s + "点"
  624.       temptext2 = @text_mp + @agi_mp.to_s + "点   " + @text_agi + @agi_agi.to_s + "点   " + @text_spi + @agi_spi.to_s + "点"
  625.       @help_window.lvup_text(@text_agi_sc , @text_2 , temptext1 , temptext2)
  626.     when 4  # 增加魔力
  627.       temptext1 = @text_hp + @spi_hp.to_s + "点   " + @text_atk + @spi_atk.to_s + "点   " + @text_def + @spi_def.to_s + "点"
  628.       temptext2 = @text_mp + @spi_mp.to_s + "点   " + @text_agi + @spi_agi.to_s + "点   " + @text_spi + @spi_spi.to_s + "点"
  629.       @help_window.lvup_text(@text_spi_sc , @text_2 , temptext1 , temptext2)
  630.     when 5  # 增加魔力值
  631.       temptext1 = @text_hp + @mp_hp.to_s + "点   " + @text_atk + @mp_atk.to_s + "点   " + @text_def + @mp_def.to_s + "点"
  632.       temptext2 = @text_mp + @mp_mp.to_s + "点   " + @text_agi + @mp_agi.to_s + "点   " + @text_spi + @mp_spi.to_s + "点"
  633.       @help_window.lvup_text(@text_cnb_sc , @text_2 , temptext1 , temptext2)
  634.     when 6 # 保存设定
  635.       @help_window.lvup_text(@text_save)
  636.     when 7 # 点数重置
  637.       @help_window.lvup_text(@text_reset)  
  638.    
  639.     end
  640.     #=============================================================
  641.     # 按下R与L换人的情况
  642.     #=============================================================      
  643.     if Input.trigger?(Input::R)
  644.       # 演奏光标 SE
  645.       Sound.play_cursor
  646.       # 移至下一位角色
  647.       @actor_index += 1
  648.       @actor_index %= $game_party.members.size
  649.       # 切换到别的状态画面
  650.       $scene = Scene_Lvup.new(@actor_index , @command_window.index)
  651.       return
  652.     end
  653.     # 按下 L 键的情况下
  654.     if Input.trigger?(Input::L)
  655.       # 演奏光标 SE
  656.       Sound.play_cursor
  657.       # 移至上一位角色
  658.       @actor_index += $game_party.members.size - 1
  659.       @actor_index %= $game_party.members.size
  660.       # 切换到别的状态画面
  661.       $scene = Scene_Lvup.new(@actor_index , @command_window.index)
  662.       return
  663.     end
  664.   end  
  665.   #--------------------------------------------------------------------------
  666.   # ● 选项明暗判断
  667.   #--------------------------------------------------------------------------
  668.   def s_disable
  669.     # 判断剩余点数是否为0,如果为0,那么增加选项表示为暗色
  670.     if $point == 0
  671.       enabled = false
  672.     else
  673.       enabled = true
  674.     end
  675.       @command_window.draw_item(0,enabled)
  676.       @command_window.draw_item(1,enabled)
  677.       @command_window.draw_item(2,enabled)
  678.       @command_window.draw_item(3,enabled)
  679.       @command_window.draw_item(4,enabled)
  680.       @command_window.draw_item(5,enabled)
  681.   end
  682. end

复制代码

Lv2.观梦者

梦石
0
星屑
723
在线时间
530 小时
注册时间
2010-6-9
帖子
840
3
 楼主| 发表于 2010-7-12 07:12:57 | 只看该作者
我已经放弃这个想法了 改这东西竟然掉帧...谢谢
回复 支持 反对

使用道具 举报

Lv2.观梦者

无节操

梦石
0
星屑
607
在线时间
795 小时
注册时间
2009-2-6
帖子
3939

开拓者贵宾

2
发表于 2010-7-12 06:29:36 | 只看该作者
首先按照你的脚本不管你是确认还是取消...他都会回到地图的...区别仅仅在于点数有没有变.
其次,我完全没用过这个脚本于是完全不知道你改了什么......o(╯□╰)o
Brandnew day, Brandnew Life
                              实在  中
暂为素材区版主,版其  琢磨
应援一下~
RPG制作大师授权素材推广计划
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-1-28 00:04

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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