Project1

标题: 怎么在菜单中加入任务一项? [打印本页]

作者: 彩色的RPG    时间: 2013-3-31 09:36
标题: 怎么在菜单中加入任务一项?
怎么做才可以把任务一项添进菜单?

例如:
物品
装备
状态
技能
任务
退出游戏
截图:
手机党~~
作者: 美丽晨露    时间: 2013-3-31 09:48
  1. #==============================================================================
  2. # ** Scene_Menu
  3. #------------------------------------------------------------------------------
  4. #  這個類用來執行顯示ESC選單畫面的程式。
  5. #==============================================================================

  6. class Scene_Menu < Scene_Base
  7.   #--------------------------------------------------------------------------
  8.   # * 物件初始化
  9.   #     menu_index : 命令游標的起始位置
  10.   #--------------------------------------------------------------------------
  11.   def initialize(menu_index = 0)
  12.     @menu_index = menu_index
  13.   end
  14.   #--------------------------------------------------------------------------
  15.   # * 程式開始
  16.   #--------------------------------------------------------------------------
  17.   def start
  18.     super
  19.     create_menu_background
  20.     create_command_window
  21.     @gold_window = Window_Gold.new(0, 360)
  22.     @status_window = Window_MenuStatus.new(160, 0)
  23.   end
  24.   #--------------------------------------------------------------------------
  25.   # * 程式中止
  26.   #--------------------------------------------------------------------------
  27.   def terminate
  28.     super
  29.     dispose_menu_background
  30.     @command_window.dispose
  31.     @gold_window.dispose
  32.     @status_window.dispose
  33.   end
  34.   #--------------------------------------------------------------------------
  35.   # * 更新幀
  36.   #--------------------------------------------------------------------------
  37.   def update
  38.     super
  39.     update_menu_background
  40.     @command_window.update
  41.     @gold_window.update
  42.     @status_window.update
  43.     if @command_window.active
  44.       update_command_selection
  45.     elsif @status_window.active
  46.       update_actor_selection
  47.     end
  48.   end
  49.   #--------------------------------------------------------------------------
  50.   # * 創建命令視窗
  51.   #--------------------------------------------------------------------------
  52.   def create_command_window
  53.     s1 = Vocab::item
  54.     s2 = Vocab::skill
  55.     s3 = Vocab::equip
  56.     s4 = Vocab::status
  57.     s5 = Vocab::save
  58.     s6 = Vocab::game_end
  59.     s7 = "任务"
  60.     @command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6,s7])
  61.     @command_window.index = @menu_index
  62.     if $game_party.members.size == 0          # 如果無人在隊
  63.       @command_window.draw_item(0, false)     # 禁用[用品]
  64.       @command_window.draw_item(1, false)     # 禁用[技能]
  65.       @command_window.draw_item(2, false)     # 禁用[整備]
  66.       @command_window.draw_item(3, false)     # 禁用[狀態]
  67.     end
  68.     if $game_system.save_disabled             # 如果禁止存檔
  69.       @command_window.draw_item(4, false)     # 禁用[存檔]
  70.     end
  71.   end
  72.   #--------------------------------------------------------------------------
  73.   # * 更新指令選擇輸入資訊
  74.   #--------------------------------------------------------------------------
  75.   def update_command_selection
  76.     if Input.trigger?(Input::B)
  77.       Sound.play_cancel
  78.       $scene = Scene_Map.new
  79.     elsif Input.trigger?(Input::C)
  80.       if $game_party.members.size == 0 and @command_window.index < 4
  81.         Sound.play_buzzer
  82.         return
  83.       elsif $game_system.save_disabled and @command_window.index == 4
  84.         Sound.play_buzzer
  85.         return
  86.       end
  87.       Sound.play_decision
  88.       case @command_window.index
  89.       when 0      # 用品
  90.         $scene = Scene_Item.new
  91.       when 1,2,3  # 技能,整備,狀態
  92.         start_actor_selection
  93.       when 4      # 存檔
  94.         $scene = Scene_File.new(true, false, false)
  95.       when 5      # 結束遊戲
  96.         $scene = Scene_End.new
  97.        when 6 #任务
  98.       $scene = Scene_Task.new(6)
  99.       end
  100.     end
  101.   end
  102.   #--------------------------------------------------------------------------
  103.   # * 開始接收主角選擇指令輸入資訊
  104.   #--------------------------------------------------------------------------
  105.   def start_actor_selection
  106.     @command_window.active = false
  107.     @status_window.active = true
  108.     if $game_party.last_actor_index < @status_window.item_max
  109.       @status_window.index = $game_party.last_actor_index
  110.     else
  111.       @status_window.index = 0
  112.     end
  113.   end
  114.   #--------------------------------------------------------------------------
  115.   # * 停止接收主角選擇指令輸入資訊
  116.   #--------------------------------------------------------------------------
  117.   def end_actor_selection
  118.     @command_window.active = true
  119.     @status_window.active = false
  120.     @status_window.index = -1
  121.   end
  122.   #--------------------------------------------------------------------------
  123.   # * 更新主角選擇指令輸入資訊
  124.   #--------------------------------------------------------------------------
  125.   def update_actor_selection
  126.     if Input.trigger?(Input::B)
  127.       Sound.play_cancel
  128.       end_actor_selection
  129.     elsif Input.trigger?(Input::C)
  130.       $game_party.last_actor_index = @status_window.index
  131.       Sound.play_decision
  132.       case @command_window.index
  133.       when 1  # 技能
  134.         $scene = Scene_Skill.new(@status_window.index)
  135.       when 2  # 整備
  136.         $scene = Scene_Equip.new(@status_window.index)
  137.       when 3  # 狀態
  138.         $scene = Scene_Status.new(@status_window.index)
  139.       end
  140.     end
  141.   end
  142. end
复制代码
这样哦。
给个范例,脚本内已经给出修改的地方了
范例.zip (262.22 KB, 下载次数: 69)
作者: 彭格列第XI代    时间: 2013-3-31 20:49
出入任务脚本啊...
作者: 美丽晨露    时间: 2013-4-4 10:15
表示楼主没有更改 Scene_Menu内的选项
所以任务选项会显示不出来。
附上范例
任务范例.zip (262.22 KB, 下载次数: 62)
修改的具体位置






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