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

Project1

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

[已经解决] 新人问题……

[复制链接]

Lv3.寻梦者

小空格

梦石
0
星屑
2625
在线时间
553 小时
注册时间
2009-7-15
帖子
1107
跳转到指定楼层
1
发表于 2010-8-15 19:38:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 №独孤剑→ 于 2010-8-15 19:56 编辑

怎么才能在‘加点’里设置退出加点程序的时候,回到的是菜单,而且光标固定在‘升级加点’?我退出的时候,是在‘存档’那里。
我实在不会往里加了……哪位帮个忙往里加一下这个选项。

Lv3.寻梦者 (暗夜天使)

名侦探小柯

梦石
0
星屑
3309
在线时间
3620 小时
注册时间
2006-9-6
帖子
37400

开拓者贵宾第3届短篇游戏大赛主流游戏组亚军第5届短篇游戏比赛亚军

2
发表于 2010-8-15 19:40:03 | 只看该作者
请把你修改过的menu给我看看。
回复 支持 反对

使用道具 举报

Lv3.寻梦者

小空格

梦石
0
星屑
2625
在线时间
553 小时
注册时间
2009-7-15
帖子
1107
3
 楼主| 发表于 2010-8-15 19:46:06 | 只看该作者
本帖最后由 №独孤剑→ 于 2010-8-15 19:51 编辑
  1. #==============================================================================
  2. # ■ Scene_Menu
  3. #------------------------------------------------------------------------------
  4. #  处理菜单画面的类。
  5. #==============================================================================

  6. class Scene_Menu
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对像
  9.   #     menu_index : 命令光标的初期位置
  10.   #--------------------------------------------------------------------------
  11.   def initialize(menu_index = 0)
  12.     @menu_index = menu_index
  13.   end
  14.   #--------------------------------------------------------------------------
  15.   # ● 主处理
  16.   #--------------------------------------------------------------------------
  17.   def main
  18.     # 生成命令窗口
  19.     s1 = $data_system.words.item
  20.     s2 = $data_system.words.skill
  21.     s3 = $data_system.words.equip
  22.     s4 = "状态"
  23.     s5 = "记忆冒险"
  24.     s6 = "说声再见"
  25.     @command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6])
  26.     @command_window.index = @menu_index
  27.     # 同伴人数为 0 的情况下
  28.     if $game_party.actors.size == 0
  29.       # 物品、特技、装备、状态无效化
  30.       @command_window.disable_item(0)
  31.       @command_window.disable_item(1)
  32.       @command_window.disable_item(2)
  33.       @command_window.disable_item(3)
  34.     end
  35.     # 禁止存档的情况下
  36.     if $game_system.save_disabled
  37.       # 存档无效
  38.       @command_window.disable_item(4)
  39.     end
  40.     # 生成游戏时间窗口
  41.     @playtime_window = Window_PlayTime.new
  42.     @playtime_window.x = 0
  43.     @playtime_window.y = 224
  44.     # 生成步数窗口
  45.     @steps_window = Window_Steps.new
  46.     @steps_window.x = 0
  47.     @steps_window.y = 320
  48.     # 生成金钱窗口
  49.     @gold_window = Window_Gold.new
  50.     @gold_window.x = 0
  51.     @gold_window.y = 416
  52.     # 生成状态窗口
  53.     @status_window = Window_MenuStatus.new
  54.     @status_window.x = 160
  55.     @status_window.y = 0
  56.     # 执行过渡
  57.     Graphics.transition
  58.     # 主循环
  59.     loop do
  60.       # 刷新游戏画面
  61.       Graphics.update
  62.       # 刷新输入信息
  63.       Input.update
  64.       # 刷新画面
  65.       update
  66.       # 如果切换画面就中断循环
  67.       if $scene != self
  68.         break
  69.       end
  70.     end
  71.     # 准备过渡
  72.     Graphics.freeze
  73.     # 释放窗口
  74.     @command_window.dispose
  75.     @playtime_window.dispose
  76.     @steps_window.dispose
  77.     @gold_window.dispose
  78.     @status_window.dispose
  79.   end
  80.   #--------------------------------------------------------------------------
  81.   # ● 刷新画面
  82.   #--------------------------------------------------------------------------
  83.   def update
  84.     # 刷新窗口
  85.     @command_window.update
  86.     @playtime_window.update
  87.     @steps_window.update
  88.     @gold_window.update
  89.     @status_window.update
  90.     # 命令窗口被激活的情况下: 调用 update_command
  91.     if @command_window.active
  92.       update_command
  93.       return
  94.     end
  95.     # 状态窗口被激活的情况下: 调用 update_status
  96.     if @status_window.active
  97.       update_status
  98.       return
  99.     end
  100.   end
  101.   #--------------------------------------------------------------------------
  102.   # ● 刷新画面 (命令窗口被激活的情况下)
  103.   #--------------------------------------------------------------------------
  104.   def update_command
  105.     # 按下 B 键的情况下
  106.     if Input.trigger?(Input::B)
  107.       # 演奏取消 SE
  108.       $game_system.se_play($data_system.cancel_se)
  109.       # 切换的地图画面
  110.       $scene = Scene_Map.new
  111.       return
  112.     end
  113.     # 按下 C 键的情况下
  114.     if Input.trigger?(Input::C)
  115.       # 同伴人数为 0、存档、游戏结束以外的场合
  116.       if $game_party.actors.size == 0 and @command_window.index < 4
  117.         # 演奏冻结 SE
  118.         $game_system.se_play($data_system.buzzer_se)
  119.         return
  120.       end
  121.       # 命令窗口的光标位置分支
  122.       case @command_window.index
  123.       when 0  # 物品
  124.         # 演奏确定 SE
  125.         $game_system.se_play($data_system.decision_se)
  126.         # 切换到物品画面
  127.         $scene = Scene_Item.new
  128.       when 1  # 特技
  129.         # 演奏确定 SE
  130.         $game_system.se_play($data_system.decision_se)
  131.         # 激活状态窗口
  132.         @command_window.active = false
  133.         @status_window.active = true
  134.         @status_window.index = 0
  135.       when 2  # 装备
  136.         # 演奏确定 SE
  137.         $game_system.se_play($data_system.decision_se)
  138.         # 激活状态窗口
  139.         @command_window.active = false
  140.         @status_window.active = true
  141.         @status_window.index = 0
  142.       when 3  # 状态
  143.         # 演奏确定 SE
  144.         $game_system.se_play($data_system.decision_se)
  145.         # 激活状态窗口
  146.         @command_window.active = false
  147.         @status_window.active = true
  148.         @status_window.index = 0
  149.       when 4  # 存档
  150.         # 禁止存档的情况下
  151.         if $game_system.save_disabled
  152.           # 演奏冻结 SE
  153.           $game_system.se_play($data_system.buzzer_se)
  154.           return
  155.         end
  156.         # 演奏确定 SE
  157.         $game_system.se_play($data_system.decision_se)
  158.         # 切换到存档画面
  159.         $scene = Scene_Save.new
  160.       when 5  # 游戏结束
  161.         # 演奏确定 SE
  162.         $game_system.se_play($data_system.decision_se)
  163.         # 切换到游戏结束画面
  164.         $scene = Scene_End.new
  165.       end
  166.       return
  167.     end
  168.   end
  169.   #--------------------------------------------------------------------------
  170.   # ● 刷新画面 (状态窗口被激活的情况下)
  171.   #--------------------------------------------------------------------------
  172.   def update_status
  173.     # 按下 B 键的情况下
  174.     if Input.trigger?(Input::B)
  175.       # 演奏取消 SE
  176.       $game_system.se_play($data_system.cancel_se)
  177.       # 激活命令窗口
  178.       @command_window.active = true
  179.       @status_window.active = false
  180.       @status_window.index = -1
  181.       return
  182.     end
  183.     # 按下 C 键的情况下
  184.     if Input.trigger?(Input::C)
  185.       # 命令窗口的光标位置分支
  186.       case @command_window.index
  187.       when 1  # 特技
  188.         # 本角色的行动限制在 2 以上的情况下
  189.         if $game_party.actors[@status_window.index].restriction >= 2
  190.           # 演奏冻结 SE
  191.           $game_system.se_play($data_system.buzzer_se)
  192.           return
  193.         end
  194.         # 演奏确定 SE
  195.         $game_system.se_play($data_system.decision_se)
  196.         # 切换到特技画面
  197.         $scene = Scene_Skill.new(@status_window.index)
  198.       when 2  # 装备
  199.         # 演奏确定 SE
  200.         $game_system.se_play($data_system.decision_se)
  201.         # 切换的装备画面
  202.         $scene = Scene_Equip.new(@status_window.index)
  203.       when 3  # 状态
  204.         # 演奏确定 SE
  205.         $game_system.se_play($data_system.decision_se)
  206.         # 切换到状态画面
  207.         $scene = Scene_Status.new(@status_window.index)
  208.       end
  209.       return
  210.     end
  211.   end
  212. end
复制代码
回复 支持 反对

使用道具 举报

Lv3.寻梦者

小空格

梦石
0
星屑
2625
在线时间
553 小时
注册时间
2009-7-15
帖子
1107
4
 楼主| 发表于 2010-8-15 20:02:10 | 只看该作者
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,转载和使用请保留此信息
  3. #==============================================================================

  4. # 脚本使用设定:

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

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

  14. # 本脚本不会取代原猩豆δ埽皇且桓龈郊庸δ堋?BR># 也就是说,默认的升级还在,但可以用这个功能手动追加点数。
  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.   #--------------------------------------------------------------------------
  43.   # ● 更改 EXP
  44.   #     exp : 新的 EXP
  45.   #--------------------------------------------------------------------------
  46.   def exp=(exp)
  47.     @exp = [[exp, 9999999].min, 0].max
  48.     # 升级
  49.     while @exp >= @exp_list[@level+1] and @exp_list[@level+1] > 0
  50.       @level += 1
  51.       # 增加4点可自由分配的点数
  52.       $game_variables[self.id + LEVEL_UP_VARIABLE] += LEVEL_UP_POINT
  53.       # 学会特技
  54.       for j in $data_classes[@class_id].learnings
  55.         if j.level == @level
  56.           learn_skill(j.skill_id)
  57.         end
  58.       end
  59.     end
  60.     # 降级
  61.     while @exp < @exp_list[@level]
  62.       @level -= 1
  63.     end
  64.     # 修正当前的 HP 与 SP 超过最大值
  65.     @hp = [@hp, self.maxhp].min
  66.     @sp = [@sp, self.maxsp].min
  67.   end
  68. end
  69. #==============================================================================
  70. # ■ Window_Base
  71. #------------------------------------------------------------------------------
  72. #  游戏中全部窗口的超级类(追加定义)
  73. #==============================================================================
  74. class Window_Base < Window
  75.   #--------------------------------------------------------------------------
  76.   # ● 描绘 HP
  77.   #     actor : 角色
  78.   #     x     : 描画目标 X 坐标
  79.   #     y     : 描画目标 Y 坐标
  80.   #     width : 描画目标的宽
  81.   #--------------------------------------------------------------------------
  82.   def draw_actor_hp_lvup(actor, x, y)
  83.     self.contents.font.color = system_color
  84.     self.contents.draw_text(x , y, 96, 32, "最大" + $data_system.words.hp)
  85.     if $temp_hp == 0
  86.       self.contents.font.color = normal_color
  87.       self.contents.draw_text(x + 120 , y, 48, 32, actor.maxhp.to_s, 2)
  88.     else
  89.       maxhp = actor.maxhp + $temp_hp
  90.       self.contents.font.color = Color.new(255, 128, 128, 255)
  91.       self.contents.draw_text(x + 120 , y, 48, 32, maxhp.to_s ,2)
  92.       self.contents.font.color = normal_color      
  93.       self.contents.draw_text(x + 155, y, 36, 32, "( ", 2)
  94.       if $temp_hp >=0
  95.         self.contents.font.color = Color.new(255, 128, 128, 255)
  96.         self.contents.draw_text(x + 155, y, 36, 32, " +",2)
  97.       else
  98.         self.contents.font.color = Color.new(255,255,0,255)
  99.         self.contents.draw_text(x + 155, y, 36, 32, " -",2)
  100.       end
  101.       self.contents.draw_text(x + 200, y, 36, 32, $temp_hp.to_s, 2)
  102.       self.contents.font.color = normal_color
  103.       self.contents.draw_text(x + 215, y, 36, 32, ")", 2)
  104.     end
  105.   end
  106.   #--------------------------------------------------------------------------
  107.   # ● 描绘 SP
  108.   #     actor : 角色
  109.   #     x     : 描画目标 X 坐标
  110.   #     y     : 描画目标 Y 坐标
  111.   #     width : 描画目标的宽
  112.   #--------------------------------------------------------------------------
  113.   def draw_actor_sp_lvup(actor, x, y)
  114.     self.contents.font.color = system_color
  115.     self.contents.draw_text(x , y, 96, 32, "最大" + $data_system.words.sp)
  116.     if $temp_sp == 0
  117.       self.contents.font.color = normal_color
  118.       self.contents.draw_text(x + 120 , y, 48, 32, actor.maxsp.to_s, 2)
  119.     else
  120.       maxsp = actor.maxsp + $temp_sp
  121.       self.contents.font.color = Color.new(255, 128, 128, 255)
  122.       self.contents.draw_text(x + 120 , y, 48, 32, maxsp.to_s ,2)
  123.       self.contents.font.color = normal_color      
  124.       self.contents.draw_text(x + 155, y, 36, 32, "( ", 2)
  125.       if $temp_sp >=0
  126.         self.contents.font.color = Color.new(255, 128, 128, 255)
  127.         self.contents.draw_text(x + 155, y, 36, 32, " +",2)
  128.       else
  129.         self.contents.font.color = Color.new(255,255,0,255)
  130.         self.contents.draw_text(x + 155, y, 36, 32, " -",2)
  131.       end
  132.       self.contents.draw_text(x + 200, y, 36, 32, $temp_sp.to_s, 2)
  133.       self.contents.font.color = normal_color
  134.       self.contents.draw_text(x + 215, y, 36, 32, ")", 2)
  135.     end
  136.   end
  137.   #--------------------------------------------------------------------------
  138.   # ● 描绘能力值
  139.   #     actor : 角色
  140.   #     x     : 描画目标 X 坐标
  141.   #     y     : 描画目标 Y 坐标
  142.   #     type  : 能力值种类 (0~4)
  143.   #--------------------------------------------------------------------------
  144.   def draw_actor_lvup(actor, x, y, type)   
  145.     # 定义数字颜色
  146.     lvup = normal_color
  147.     upcolor = Color.new(255, 128, 128, 255)
  148.     self.contents.font.color = normal_color   
  149.     case type
  150.     when 0
  151.       parameter_name = $data_system.words.str
  152.       parameter_value = actor.str
  153.       parameter_value_temp = parameter_value + $temp_str
  154.       if $temp_str != 0
  155.         lvup = upcolor
  156.         self.contents.draw_text(x + 256, y, 16, 32, "(")
  157.         if $temp_str >= 0
  158.           self.contents.font.color = lvup
  159.           self.contents.draw_text(x + 272, y, 80, 32, "+",0)
  160.         else
  161.           self.contents.font.color = Color.new(255,255,0,255)
  162.           self.contents.draw_text(x + 272, y, 80, 32, "-",0)
  163.         end        
  164.         self.contents.draw_text(x + 272, y, 80, 32, $temp_str.abs.to_s,1)
  165.         self.contents.font.color = normal_color
  166.         self.contents.draw_text(x + 272, y, 80, 32, ")", 2)
  167.       end
  168.     when 1
  169.       parameter_name = $data_system.words.dex
  170.       parameter_value = actor.dex
  171.       parameter_value_temp = parameter_value + $temp_dex
  172.       if $temp_dex != 0
  173.         lvup = upcolor
  174.         self.contents.draw_text(x + 256, y, 16, 32, "(")
  175.         if $temp_dex >= 0
  176.           self.contents.font.color = lvup
  177.           self.contents.draw_text(x + 272, y, 80, 32, "+",0)
  178.         else
  179.           self.contents.font.color = Color.new(255,255,0,255)
  180.           self.contents.draw_text(x + 272, y, 80, 32, "-",0)
  181.         end        
  182.         self.contents.draw_text(x + 272, y, 80, 32, $temp_dex.abs.to_s,1)
  183.         self.contents.font.color = normal_color
  184.         self.contents.draw_text(x + 272, y, 80, 32, ")", 2)
  185.       end
  186.     when 2
  187.       parameter_name = $data_system.words.agi
  188.       parameter_value = actor.agi
  189.       parameter_value_temp = parameter_value + $temp_agi
  190.       if $temp_agi != 0
  191.         lvup = upcolor
  192.         self.contents.draw_text(x + 256, y, 16, 32, "(")
  193.         if $temp_agi >= 0
  194.           self.contents.font.color = lvup
  195.           self.contents.draw_text(x + 272, y, 80, 32, "+",0)
  196.         else
  197.           self.contents.font.color = Color.new(255,255,0,255)
  198.           self.contents.draw_text(x + 272, y, 80, 32, "-",0)
  199.         end        
  200.         self.contents.draw_text(x + 272, y, 80, 32, $temp_agi.abs.to_s,1)
  201.         self.contents.font.color = normal_color
  202.         self.contents.draw_text(x + 272, y, 80, 32, ")", 2)
  203.       end
  204.     when 3
  205.       parameter_name = $data_system.words.int
  206.       parameter_value = actor.int
  207.       parameter_value_temp = parameter_value + $temp_int
  208.       if $temp_int != 0
  209.         lvup = upcolor
  210.         self.contents.draw_text(x + 256, y, 16, 32, "(")
  211.         if $temp_int >= 0
  212.           self.contents.font.color = lvup
  213.           self.contents.draw_text(x + 272, y, 80, 32, "+",0)
  214.         else
  215.           self.contents.font.color = Color.new(255,255,0,255)
  216.           self.contents.draw_text(x + 272, y, 80, 32, "-",0)
  217.         end        
  218.         self.contents.draw_text(x + 272, y, 80, 32, $temp_int.abs.to_s,1)
  219.         self.contents.font.color = normal_color
  220.         self.contents.draw_text(x + 272, y, 80, 32, ")", 2)
  221.       end
  222.     when 4
  223.       parameter_name = "剩余点数"
  224.       parameter_value = $point
  225.       if $point != 0
  226.         lvup = upcolor
  227.       end
  228.     end   
  229.     self.contents.font.color = system_color
  230.     self.contents.draw_text(x, y, 120, 32, parameter_name)
  231.     self.contents.font.color = normal_color
  232.     self.contents.draw_text(x + 120, y, 36, 32, parameter_value.to_s)   
  233.     if type != 4
  234.       self.contents.draw_text(x + 150, y, 36, 32, "→")
  235.     end  
  236.     self.contents.font.color = lvup
  237.     self.contents.draw_text(x + 180, y, 60, 32, parameter_value_temp.to_s)
  238.     self.contents.font.color = normal_color        
  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, 512, 320)
  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, 40, 112)
  263.     draw_actor_name(@actor, 4, 0)
  264.     draw_actor_class(@actor, 4 + 144, 0)
  265.     draw_actor_level(@actor, 96, 32)
  266.     draw_actor_state(@actor, 96, 64)   
  267.     draw_actor_hp_lvup(@actor, 96+128, 32)
  268.     draw_actor_sp_lvup(@actor, 96+128, 64)
  269.     draw_actor_lvup(@actor, 96, 128, 0)
  270.     draw_actor_lvup(@actor, 96, 160, 1)
  271.     draw_actor_lvup(@actor, 96, 192, 2)
  272.     draw_actor_lvup(@actor, 96, 224, 3)
  273.     draw_actor_lvup(@actor, 96, 256, 4)
  274.   end
  275. end
  276. #==============================================================================
  277. # ■ Window_Help
  278. #------------------------------------------------------------------------------
  279. #  特技及物品的说明、角色的状态显示的窗口。
  280. #==============================================================================
  281. class Window_Lvup_Help < Window_Base
  282.   #--------------------------------------------------------------------------
  283.   # ● 初始化对像
  284.   #--------------------------------------------------------------------------
  285.   def initialize
  286.     super(0, 320, 640, 160)
  287.     self.contents = Bitmap.new(width - 32, height - 32)
  288.     @test = "" #——这个东西用来检测,节约内存专用
  289.   end  
  290.   #--------------------------------------------------------------------------
  291.   # ● 设置文本
  292.   #--------------------------------------------------------------------------
  293.   def lvup_text(text1, text2 = nil, text3 = nil, text4 = nil)
  294.     if @test != text1
  295.       @test = text1
  296.     else
  297.       return
  298.     end   
  299.     self.contents.clear
  300.     self.contents.font.color = normal_color
  301.     self.contents.draw_text(4, 0, self.width - 40, 32, text1)
  302.     if text2 != nil
  303.       self.contents.draw_text(4 , 32, self.width - 40, 32, text2)
  304.     end
  305.     self.contents.font.size -= 4
  306.     if text3 != nil
  307.       self.contents.draw_text(4 , 64, self.width - 40, 32, text3)
  308.     end
  309.     if text4 != nil
  310.       self.contents.draw_text(4 , 96, self.width - 40, 32, text4)
  311.     end
  312.     self.contents.font.size += 4
  313.   end
  314. end
  315. #==============================================================================
  316. # ■ Scene_lvup
  317. #------------------------------------------------------------------------------
  318. #  处理升级画面的类。
  319. #==============================================================================
  320. class Scene_Lvup
  321.   #--------------------------------------------------------------------------
  322.   # ● 初始化对像
  323.   #     actor_index : 角色索引
  324.   #     menu_index : 选项起始位置
  325.   #--------------------------------------------------------------------------
  326.   def initialize(actor_index = 0 , menu_index = 0)
  327.     @actor_index = actor_index
  328.     @menu_index = menu_index
  329.   end
  330.   #--------------------------------------------------------------------------
  331.   # ● 主处理
  332.   #--------------------------------------------------------------------------
  333.   def main
  334.     s1 = "增加体力"
  335.     s2 = "增加"+$data_system.words.str
  336.     s3 = "增加"+$data_system.words.dex
  337.     s4 = "增加"+$data_system.words.agi
  338.     s5 = "增加"+$data_system.words.int
  339.     s6 = "确认加点"
  340.     s7 = "点数重置"
  341.     @command_window = Window_Command.new(128, [s1, s2, s3, s4, s5, s6, s7])
  342.     @command_window.index = @menu_index
  343.     # 获取角色
  344.     @actor = $game_party.actors[@actor_index]
  345.     # 将角色的剩余点数带入
  346.     $point = $game_variables[@actor.id + LEVEL_UP_VARIABLE]   
  347.     # 初始化临时量
  348.     $temp_str = 0
  349.     $temp_dex = 0
  350.     $temp_agi = 0
  351.     $temp_int = 0
  352.     $temp_hp = 0
  353.     $temp_sp = 0
  354.     #=========================================================================
  355.     # 特别提示:这些设置也可以使用小数,但是可能出现0值意外错误
  356.     #  (各种编程语言都有这种意外),建议还是使用整数,正负不限
  357.     #=========================================================================
  358.     # 每提升一次力量,提升多少附加能力
  359.     #=========================================================================
  360.     @str_hp = 0     # 每提升一次力量附加提升多少HP
  361.     @str_sp = 0     # 每提升一次力量附加提升多少SP
  362.     @str_dex = 0    # 每提升一次力量附加提升多少灵巧
  363.     @str_agi = 0    # 每提升一次力量附加提升多少速度
  364.     @str_int = 0   # 每提升一次力量附加提升多少魔力
  365.     @str_str = 1    # 每提升一次力量附加提升多少力量
  366.     #=========================================================================
  367.     # 每提升一次灵巧,提升多少附加能力
  368.     #=========================================================================
  369.     @dex_hp = 0    # 每提升一次灵巧附加提升多少HP
  370.     @dex_sp = 0    # 每提升一次灵巧附加提升多少SP
  371.     @dex_str = 0    # 每提升一次灵巧附加提升多少力量
  372.     @dex_agi = 0    # 每提升一次灵巧附加提升多少速度
  373.     @dex_int = 0    # 每提升一次灵巧附加提升多少魔力
  374.     @dex_dex = 1    # 每提升一次灵巧附加提升多少灵巧
  375.     #=========================================================================
  376.     # 每提升一次速度,提升多少附加能力
  377.     #=========================================================================
  378.     @agi_hp = 0     # 每提升一次速度附加提升多少HP
  379.     @agi_sp = 0     # 每提升一次速度附加提升多少SP
  380.     @agi_str = 0    # 每提升一次速度附加提升多少力量
  381.     @agi_dex = 0    # 每提升一次速度附加提升多少灵巧
  382.     @agi_int = 0    # 每提升一次速度附加提升多少魔力
  383.     @agi_agi = 1    # 每提升一次速度附加提升多少速度
  384.     #=========================================================================
  385.     # 每提升一次魔力,提升多少附加能力
  386.     #=========================================================================
  387.     @int_hp = 0     # 每提升一次魔力附加提升多少HP
  388.     @int_sp = 5    # 每提升一次魔力附加提升多少SP
  389.     @int_str = 0   # 每提升一次魔力附加提升多少力量
  390.     @int_dex = 0   # 每提升一次魔力附加提升多少灵巧
  391.     @int_agi = 0   # 每提升一次魔力附加提升多少速度
  392.     @int_int = 1   # 每提升一次魔力附加提升多少魔力
  393.     #=========================================================================
  394.     # 每提升一次体力,提升多少附加能力
  395.     #=========================================================================
  396.     @hp = 5       # 每提升一次体力提升多少HP
  397.     @sp = 0      # 每提升一次体力提升多少SP
  398.     @hp_str = 0   # 每提升一次体力提升多少力量
  399.     @hp_dex = 0   # 每提升一次体力提升多少速度
  400.     @hp_agi = 0   # 每提升一次体力提升多少灵巧
  401.     @hp_int = 0   # 每提升一次体力提升多少魔力   
  402.     # 定义说明文字
  403.     @text_hp_sc = "体力可以增加HP上限,使续战时间更长久!"
  404.     @text_str_sc = $data_system.words.str + "可以增加物理攻击和物理技能的威力!"
  405.     @text_dex_sc = $data_system.words.dex + "可以提高攻击的命中率和必杀!"
  406.     @text_agi_sc = $data_system.words.agi + "可以提高回避、逃跑成功率!"
  407.     @text_int_sc = $data_system.words.int + "可以提高魔法的效果,可以增加1点魔力!"
  408.     @text_save = "保存分配情况并返回游戏"
  409.     @text_reset= "重新分配能力点数"
  410.     @text_2 = "每增加一次此项能力值,可以提升能力值"
  411.     @text_hp = "最大" + $data_system.words.hp + "值"
  412.     @text_sp = "最大" + $data_system.words.sp + "值"
  413.     @text_str = "最大" + $data_system.words.str + "值"
  414.     @text_dex = "最大" + $data_system.words.dex + "值"
  415.     @text_agi = "最大" + $data_system.words.agi + "值"
  416.     @text_int = "最大" + $data_system.words.int + "值"
  417.     s_disable
  418.     # 生成状态窗口
  419.     @lvup_window = Window_Lvup.new(@actor)
  420.     @lvup_window.x = 128
  421.     @lvup_window.y = 0   
  422.     # 生成帮助窗口并初始化帮助文本
  423.     @help_window = Window_Lvup_Help.new   
  424.     # 执行过渡
  425.     Graphics.transition(40, "Graphics/Transitions/" + $data_system.battle_transition)
  426.     # 主循环
  427.     loop do
  428.       # 刷新游戏画面
  429.       Graphics.update
  430.       # 刷新输入信息
  431.       Input.update
  432.       # 刷新画面
  433.       update
  434.       # 如果切换画面就中断循环
  435.       if $scene != self
  436.         break
  437.       end
  438.     end
  439.     # 准备过渡
  440.     Graphics.freeze
  441.     # 释放窗口
  442.     @command_window.dispose
  443.     @lvup_window.dispose
  444.     @help_window.dispose
  445.   end
  446.   #--------------------------------------------------------------------------
  447.   # ● 刷新画面
  448.   #--------------------------------------------------------------------------
  449.   def update
  450.     # 刷新窗口
  451.     @command_window.update
  452.     # 选项明暗判断(因为太消耗资源,所以屏蔽掉了)
  453.     s_disable
  454.     @lvup_window.update
  455.     #=============================================================
  456.     # 按下 B 键的情况下
  457.     #=============================================================
  458.     if Input.trigger?(Input::B)
  459.       # 演奏取消 SE
  460.       $game_system.se_play($data_system.cancel_se)
  461.       # 切换到地图画面
  462.       $scene = Scene_Menu.new(3)
  463.       return
  464.     end
  465.     #=============================================================
  466.     # 按下 C 键的情况下
  467.     #=============================================================
  468.     if Input.trigger?(Input::C)      
  469.       if @command_window.index == 5
  470.           # 演奏确定 SE
  471.         $game_system.se_play($data_system.decision_se)
  472.         # 将角色的剩余点数带回
  473.         $game_variables[@actor.id + LEVEL_UP_VARIABLE] = $point
  474.         # 将角色点数实际加上
  475.         @actor.str += $temp_str
  476.         @actor.dex += $temp_dex
  477.         @actor.agi += $temp_agi
  478.         @actor.int += $temp_int
  479.         @actor.maxhp += $temp_hp
  480.         @actor.maxsp += $temp_sp
  481.         # 切换到地图画面
  482.         $scene = Scene_Menu.new(4)
  483.         return
  484.       end
  485.       if @command_window.index == 6
  486.           # 演奏确定 SE
  487.         $game_system.se_play($data_system.cancel_se)
  488.           # 将角色的剩余点数带入
  489.         $point = $game_variables[@actor.id + LEVEL_UP_VARIABLE]   
  490.           # 初始化临时量
  491.         $temp_str = 0
  492.         $temp_dex = 0
  493.         $temp_agi = 0
  494.         $temp_int = 0
  495.         $temp_hp = 0
  496.         $temp_sp = 0
  497.         @lvup_window.refresh
  498.         return
  499.       end
  500.       if $point == 0
  501.         # 演奏冻结 SE
  502.         $game_system.se_play($data_system.buzzer_se)
  503.         return
  504.       end
  505.       case @command_window.index
  506.       when 0
  507.         # 演奏确定 SE
  508.         $game_system.se_play($data_system.decision_se)
  509.         $temp_hp += @hp
  510.         $temp_sp += @sp
  511.         $temp_str += @hp_str
  512.         $temp_dex += @hp_dex
  513.         $temp_agi += @hp_agi
  514.         $temp_int += @hp_int
  515.         $point -= 1
  516.         @lvup_window.refresh
  517.         s_disable
  518.         return
  519.       when 1
  520.         # 演奏确定 SE
  521.         $game_system.se_play($data_system.decision_se)
  522.         $temp_str += @str_str
  523.         $temp_hp += @str_hp
  524.         $temp_sp += @str_sp
  525.         $temp_dex += @str_dex
  526.         $temp_agi += @str_agi
  527.         $temp_int += @str_int
  528.         $point -= 1
  529.         @lvup_window.refresh
  530.         s_disable
  531.         return
  532.       when 2
  533.         # 演奏确定 SE
  534.         $game_system.se_play($data_system.decision_se)
  535.         $temp_dex += @dex_dex
  536.         $temp_hp += @dex_hp
  537.         $temp_sp += @dex_sp
  538.         $temp_str += @dex_str
  539.         $temp_agi += @dex_agi
  540.         $temp_int += @dex_int
  541.         $point -= 1
  542.         @lvup_window.refresh
  543.         s_disable
  544.         return
  545.       when 3
  546.         # 演奏确定 SE
  547.         $game_system.se_play($data_system.decision_se)
  548.         $temp_agi += @agi_agi
  549.         $temp_hp += @agi_hp
  550.         $temp_sp += @agi_sp
  551.         $temp_str += @agi_str
  552.         $temp_dex += @agi_dex
  553.         $temp_int += @agi_int
  554.         $point -= 1
  555.         @lvup_window.refresh
  556.         s_disable
  557.         return
  558.       when 4
  559.         # 演奏确定 SE
  560.         $game_system.se_play($data_system.decision_se)
  561.         $temp_int += @int_int
  562.         $temp_hp += @int_hp
  563.         $temp_sp += @int_sp
  564.         $temp_str += @int_str
  565.         $temp_dex += @int_dex
  566.         $temp_agi += @int_agi
  567.         $point -= 1
  568.         @lvup_window.refresh
  569.         s_disable
  570.         return
  571.       end
  572.     end
  573.     #=============================================================
  574.     # 什么都没有按下的情况
  575.     #=============================================================
  576.     case @command_window.index   
  577.     when 0  # 增加体力
  578.       temptext1 = @text_hp + @hp.to_s + "点   " + @text_str + @hp_str.to_s + "点   " + @text_dex + @hp_dex.to_s + "点"
  579.       temptext2 = @text_sp + @sp.to_s + "点   " + @text_agi + @hp_agi.to_s + "点   " + @text_int + @hp_int.to_s + "点"
  580.       @help_window.lvup_text(@text_hp_sc , @text_2 , temptext1 , temptext2)
  581.     when 1  # 增加力量
  582.       temptext1 = @text_hp + @str_hp.to_s + "点   " + @text_str + @str_str.to_s + "点   " + @text_dex + @str_dex.to_s + "点"
  583.       temptext2 = @text_sp + @str_sp.to_s + "点   " + @text_agi + @str_agi.to_s + "点   " + @text_int + @str_int.to_s + "点"
  584.       @help_window.lvup_text(@text_str_sc , @text_2 , temptext1 , temptext2)
  585.     when 2  # 增加灵巧
  586.       temptext1 = @text_hp + @dex_hp.to_s + "点   " + @text_str + @dex_agi.to_s + "点   " + @text_dex + @dex_dex.to_s + "点"
  587.       temptext2 = @text_sp + @dex_sp.to_s + "点   " + @text_agi + @dex_agi.to_s + "点   " + @text_int + @dex_int.to_s + "点"
  588.       @help_window.lvup_text(@text_dex_sc , @text_2 , temptext1 , temptext2)
  589.     when 3  # 增加速度
  590.       temptext1 = @text_hp + @agi_hp.to_s + "点   " + @text_str + @agi_str.to_s + "点   " + @text_dex + @agi_dex.to_s + "点"
  591.       temptext2 = @text_sp + @agi_sp.to_s + "点   " + @text_agi + @agi_agi.to_s + "点   " + @text_int + @agi_int.to_s + "点"
  592.       @help_window.lvup_text(@text_agi_sc , @text_2 , temptext1 , temptext2)
  593.     when 4  # 增加魔力
  594.       temptext1 = @text_hp + @int_hp.to_s + "点   " + @text_str + @int_str.to_s + "点   " + @text_dex + @int_dex.to_s + "点"
  595.       temptext2 = @text_sp + @int_sp.to_s + "点   " + @text_agi + @int_agi.to_s + "点   " + @text_int + @int_int.to_s + "点"
  596.       @help_window.lvup_text(@text_int_sc , @text_2 , temptext1 , temptext2)
  597.     when 5 # 保存设定
  598.       @help_window.lvup_text(@text_save)
  599.     when 6 # 点数重置
  600.       @help_window.lvup_text(@text_reset)     
  601.     end
  602.     #=============================================================
  603.     # 按下R与L换人的情况
  604.     #=============================================================      
  605.     if Input.trigger?(Input::R)
  606.       # 演奏光标 SE
  607.       $game_system.se_play($data_system.cursor_se)
  608.       # 移至下一位角色
  609.       @actor_index += 1
  610.       @actor_index %= $game_party.actors.size
  611.       # 切换到别的状态画面
  612.       $scene = Scene_Lvup.new(@actor_index , @command_window.index)
  613.       return
  614.     end
  615.     # 按下 L 键的情况下
  616.     if Input.trigger?(Input::L)
  617.       # 演奏光标 SE
  618.       $game_system.se_play($data_system.cursor_se)
  619.       # 移至上一位角色
  620.       @actor_index += $game_party.actors.size - 1
  621.       @actor_index %= $game_party.actors.size
  622.       # 切换到别的状态画面
  623.       $scene = Scene_Lvup.new(@actor_index , @command_window.index)
  624.       return
  625.     end
  626.   end  
  627.   #--------------------------------------------------------------------------
  628.   # ● 选项明暗判断
  629.   #--------------------------------------------------------------------------
  630.   def s_disable
  631.     # 判断剩余点数是否为0,如果为0,那么增加选项表示为暗色
  632.     if $point == 0
  633.       @command_window.disable_item(0)
  634.       @command_window.disable_item(1)
  635.       @command_window.disable_item(2)
  636.       @command_window.disable_item(3)
  637.       @command_window.disable_item(4)
  638.     else
  639.       @command_window.able_item(0)
  640.       @command_window.able_item(1)      
  641.       @command_window.able_item(2)
  642.       @command_window.able_item(3)
  643.       @command_window.able_item(4)
  644.     end
  645.   end
  646. end
复制代码
$scene = Scene_Lvup.new
回复 支持 反对

使用道具 举报

Lv3.寻梦者 (暗夜天使)

名侦探小柯

梦石
0
星屑
3309
在线时间
3620 小时
注册时间
2006-9-6
帖子
37400

开拓者贵宾第3届短篇游戏大赛主流游戏组亚军第5届短篇游戏比赛亚军

5
发表于 2010-8-15 20:04:49 | 只看该作者
  1. #==============================================================================
  2. # ■ Scene_Menu
  3. #------------------------------------------------------------------------------
  4. #  处理菜单画面的类。
  5. #==============================================================================

  6. class Scene_Menu
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对像
  9.   #     menu_index : 命令光标的初期位置
  10.   #--------------------------------------------------------------------------
  11.   def initialize(menu_index = 0)
  12.     @menu_index = menu_index
  13.   end
  14.   #--------------------------------------------------------------------------
  15.   # ● 主处理
  16.   #--------------------------------------------------------------------------
  17.   def main
  18.     # 生成命令窗口
  19.     s1 = $data_system.words.item
  20.     s2 = $data_system.words.skill
  21.     s3 = $data_system.words.equip
  22.     s4 = "状态"
  23.     s5 = "记忆冒险"
  24.     s6 = "说声再见"
  25.     s7 = "升级加点"
  26.     @command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6, s7])
  27.     @command_window.index = @menu_index
  28.     # 同伴人数为 0 的情况下
  29.     if $game_party.actors.size == 0
  30.       # 物品、特技、装备、状态无效化
  31.       @command_window.disable_item(0)
  32.       @command_window.disable_item(1)
  33.       @command_window.disable_item(2)
  34.       @command_window.disable_item(3)
  35.     end
  36.     # 禁止存档的情况下
  37.     if $game_system.save_disabled
  38.       # 存档无效
  39.       @command_window.disable_item(4)
  40.     end
  41.     # 生成游戏时间窗口
  42.     @playtime_window = Window_PlayTime.new
  43.     @playtime_window.x = 0
  44.     @playtime_window.y = 224
  45.     # 生成步数窗口
  46.     @steps_window = Window_Steps.new
  47.     @steps_window.x = 0
  48.     @steps_window.y = 320
  49.     # 生成金钱窗口
  50.     @gold_window = Window_Gold.new
  51.     @gold_window.x = 0
  52.     @gold_window.y = 416
  53.     # 生成状态窗口
  54.     @status_window = Window_MenuStatus.new
  55.     @status_window.x = 160
  56.     @status_window.y = 0
  57.     # 执行过渡
  58.     Graphics.transition
  59.     # 主循环
  60.     loop do
  61.       # 刷新游戏画面
  62.       Graphics.update
  63.       # 刷新输入信息
  64.       Input.update
  65.       # 刷新画面
  66.       update
  67.       # 如果切换画面就中断循环
  68.       if $scene != self
  69.         break
  70.       end
  71.     end
  72.     # 准备过渡
  73.     Graphics.freeze
  74.     # 释放窗口
  75.     @command_window.dispose
  76.     @playtime_window.dispose
  77.     @steps_window.dispose
  78.     @gold_window.dispose
  79.     @status_window.dispose
  80.   end
  81.   #--------------------------------------------------------------------------
  82.   # ● 刷新画面
  83.   #--------------------------------------------------------------------------
  84.   def update
  85.     # 刷新窗口
  86.     @command_window.update
  87.     @playtime_window.update
  88.     @steps_window.update
  89.     @gold_window.update
  90.     @status_window.update
  91.     # 命令窗口被激活的情况下: 调用 update_command
  92.     if @command_window.active
  93.       update_command
  94.       return
  95.     end
  96.     # 状态窗口被激活的情况下: 调用 update_status
  97.     if @status_window.active
  98.       update_status
  99.       return
  100.     end
  101.   end
  102.   #--------------------------------------------------------------------------
  103.   # ● 刷新画面 (命令窗口被激活的情况下)
  104.   #--------------------------------------------------------------------------
  105.   def update_command
  106.     # 按下 B 键的情况下
  107.     if Input.trigger?(Input::B)
  108.       # 演奏取消 SE
  109.       $game_system.se_play($data_system.cancel_se)
  110.       # 切换的地图画面
  111.       $scene = Scene_Map.new
  112.       return
  113.     end
  114.     # 按下 C 键的情况下
  115.     if Input.trigger?(Input::C)
  116.       # 同伴人数为 0、存档、游戏结束以外的场合
  117.       if $game_party.actors.size == 0 and @command_window.index < 4
  118.         # 演奏冻结 SE
  119.         $game_system.se_play($data_system.buzzer_se)
  120.         return
  121.       end
  122.       # 命令窗口的光标位置分支
  123.       case @command_window.index
  124.       when 0  # 物品
  125.         # 演奏确定 SE
  126.         $game_system.se_play($data_system.decision_se)
  127.         # 切换到物品画面
  128.         $scene = Scene_Item.new
  129.       when 1  # 特技
  130.         # 演奏确定 SE
  131.         $game_system.se_play($data_system.decision_se)
  132.         # 激活状态窗口
  133.         @command_window.active = false
  134.         @status_window.active = true
  135.         @status_window.index = 0
  136.       when 2  # 装备
  137.         # 演奏确定 SE
  138.         $game_system.se_play($data_system.decision_se)
  139.         # 激活状态窗口
  140.         @command_window.active = false
  141.         @status_window.active = true
  142.         @status_window.index = 0
  143.       when 3  # 状态
  144.         # 演奏确定 SE
  145.         $game_system.se_play($data_system.decision_se)
  146.         # 激活状态窗口
  147.         @command_window.active = false
  148.         @status_window.active = true
  149.         @status_window.index = 0
  150.       when 4  # 存档
  151.         # 禁止存档的情况下
  152.         if $game_system.save_disabled
  153.           # 演奏冻结 SE
  154.           $game_system.se_play($data_system.buzzer_se)
  155.           return
  156.         end
  157.         # 演奏确定 SE
  158.         $game_system.se_play($data_system.decision_se)
  159.         # 切换到存档画面
  160.         $scene = Scene_Save.new
  161.       when 5  # 游戏结束
  162.         # 演奏确定 SE
  163.         $game_system.se_play($data_system.decision_se)
  164.         # 切换到游戏结束画面
  165.         $scene = Scene_End.new
  166.       end
  167.       return
  168.       when 6  # 升级加点
  169.         # 演奏确定 SE
  170.         $game_system.se_play($data_system.decision_se)
  171.         # 切换到升级加点的画面
  172.         $scene = Scene_Lvup.new(0,7)
  173.     end
  174.   end
  175.   #--------------------------------------------------------------------------
  176.   # ● 刷新画面 (状态窗口被激活的情况下)
  177.   #--------------------------------------------------------------------------
  178.   def update_status
  179.     # 按下 B 键的情况下
  180.     if Input.trigger?(Input::B)
  181.       # 演奏取消 SE
  182.       $game_system.se_play($data_system.cancel_se)
  183.       # 激活命令窗口
  184.       @command_window.active = true
  185.       @status_window.active = false
  186.       @status_window.index = -1
  187.       return
  188.     end
  189.     # 按下 C 键的情况下
  190.     if Input.trigger?(Input::C)
  191.       # 命令窗口的光标位置分支
  192.       case @command_window.index
  193.       when 1  # 特技
  194.         # 本角色的行动限制在 2 以上的情况下
  195.         if $game_party.actors[@status_window.index].restriction >= 2
  196.           # 演奏冻结 SE
  197.           $game_system.se_play($data_system.buzzer_se)
  198.           return
  199.         end
  200.         # 演奏确定 SE
  201.         $game_system.se_play($data_system.decision_se)
  202.         # 切换到特技画面
  203.         $scene = Scene_Skill.new(@status_window.index)
  204.       when 2  # 装备
  205.         # 演奏确定 SE
  206.         $game_system.se_play($data_system.decision_se)
  207.         # 切换的装备画面
  208.         $scene = Scene_Equip.new(@status_window.index)
  209.       when 3  # 状态
  210.         # 演奏确定 SE
  211.         $game_system.se_play($data_system.decision_se)
  212.         # 切换到状态画面
  213.         $scene = Scene_Status.new(@status_window.index)
  214.       end
  215.       return
  216.     end
  217.   end
  218. end
复制代码
下面那个脚本,470行的$scene = Scene_Menu.new(3) 改成$scene = Scene_Menu.new(7)
改起来试试吧 - -

点评

这个menu已经改好,你改加点脚本就可以了  发表于 2010-8-15 20:05

评分

参与人数 1星屑 +300 收起 理由
「旅」 + 300 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

Lv3.寻梦者

小空格

梦石
0
星屑
2625
在线时间
553 小时
注册时间
2009-7-15
帖子
1107
6
 楼主| 发表于 2010-8-16 09:04:03 | 只看该作者
OK
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-1-4 13:33

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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