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

Project1

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

[已经过期] 状态栏如何按翻页键依次切换角色列表中的角色

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
77 小时
注册时间
2006-6-12
帖子
95
跳转到指定楼层
1
 楼主| 发表于 2013-2-23 10:20:57 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 wangxinly 于 2013-2-23 19:06 编辑

比如我角色列表有10个角色,要把状态栏默认打开的设置成$game_actors[0]的状态栏,然后按翻页键依次打开$game_actors[3],$game_actors[2],一直到$game_actors[10]之后再按就又回到$game_actors[1]的状态栏
这个过程中要无视这个角色在不在队伍中的


求达人指点!! 翻页的脚本我看不懂

Lv2.观梦者

梦石
0
星屑
665
在线时间
194 小时
注册时间
2012-6-1
帖子
720
2
发表于 2013-2-23 12:01:46 | 只看该作者
要脚本吗?
我这儿有一个大概符合你超级好的脚本
我也在用
死亡
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
77 小时
注册时间
2006-6-12
帖子
95
3
 楼主| 发表于 2013-2-23 12:16:18 | 只看该作者
1715063941 发表于 2013-2-23 12:01
要脚本吗?
我这儿有一个大概符合你超级好的脚本
我也在用

当然要啊,不要我何必来问
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
665
在线时间
194 小时
注册时间
2012-6-1
帖子
720
4
发表于 2013-2-23 12:20:51 | 只看该作者
  1. #==============================================================================
  2. #
  3. # ▼ Yanfly Engine Ace - Ace Status Menu v1.01
  4. # -- Last Updated: 2011.12.26
  5. # -- Level: Normal
  6. # -- Requires: n/a
  7. #
  8. #==============================================================================

  9. $imported = {} if $imported.nil?
  10. $imported["YEA-StatusMenu"] = true

  11. #==============================================================================
  12. # ▼ Updates
  13. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  14. # 2011.12.26 - Compatibility Update: Rename Actor
  15. # 2011.12.23 - Started Script and Finished.
  16. #
  17. #==============================================================================
  18. # ▼ Introduction
  19. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  20. # This script changes the status screen completely to something the player can
  21. # interact with more and be able to view actor data with more clarity. The
  22. # player is able to view the general information for an actor (parameters and
  23. # experience), a parameters bar graph, the various hidden extra parameters
  24. # (named properties in the script), and a customizable biography for the actor.
  25. # Also with this script, biographies can be changed at any time using a script
  26. # call to add more of a personal touch to characters.
  27. #
  28. #==============================================================================
  29. # ▼ Instructions
  30. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  31. # To install this script, open up your script editor and copy/paste this script
  32. # to an open slot below ▼ Materials/素材 but above ▼ Main. Remember to save.
  33. #
  34. # -----------------------------------------------------------------------------
  35. # Script Calls - These commands are used with script calls.
  36. # -----------------------------------------------------------------------------
  37. # $game_actors[x].description = string
  38. # Changes the biography description for actor x to that of the string. Use \n
  39. # to designate linebreaks in the string. If you wish to use text codes, write
  40. # them in the strings as \\n[2] or \\c[3] to make them work properly.
  41. #
  42. #==============================================================================
  43. # ▼ Compatibility
  44. # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  45. # This script is made strictly for RPG Maker VX Ace. It is highly unlikely that
  46. # it will run with RPG Maker VX without adjusting.
  47. #
  48. #==============================================================================

  49. module YEA
  50.   module STATUS
  51.    
  52.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  53.     # - Command Window Settings -
  54.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  55.     # This section adjusts the commands that appear in the command window used
  56.     # for the status screen. Rearrange the commands, add new ones, remove them
  57.     # as you see fit.
  58.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  59.     COMMANDS =[ # The order at which the menu items are shown.
  60.     # [    :command,    "Display"],
  61.       [    :general,    "基本信息"],
  62.       [ :parameters, "数据"],
  63.       [ :properties, "属性"],
  64.     # [    :custom1,     "Skills"],
  65.     # [    :custom2,  "Equipment"],
  66.     # [    :custom3,      "Class"],
  67.       [  :biography,  "传记"],
  68.       [     :rename,     "Rename"],  # Requires YEA - Rename Actor
  69.       [    :retitle,    "Retitle"],  # Requires YEA - Rename Actor
  70.     ] # Do not remove this.
  71.    
  72.     #--------------------------------------------------------------------------
  73.     # - Status Custom Commands -
  74.     # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  75.     # For those who use scripts to that may produce unique effects for the
  76.     # status menu, use this hash to manage the custom commands for the Status
  77.     # Command Window. You can disable certain commands or prevent them from
  78.     # appearing by using switches. If you don't wish to bind them to a switch,
  79.     # set the proper switch to 0 for it to have no impact.
  80.     #--------------------------------------------------------------------------
  81.     CUSTOM_STATUS_COMMANDS ={
  82.     # :command => [EnableSwitch, ShowSwitch, Handler Method, Window Draw],
  83.       :custom1 => [           0,          0, :command_name1, :draw_custom1],
  84.       :custom2 => [           0,          0, :command_name2, :draw_custom2],
  85.       :custom3 => [           0,          0, :command_name3, :draw_custom3],
  86.     } # Do not remove this.
  87.    
  88.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  89.     # - General Window Settings -
  90.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  91.     # These settings adjust the way the general window visually appears.
  92.     # Not many changes need to be done here other than vocab changes.
  93.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  94.     PARAMETERS_VOCAB = "数据"         # Title used for Parameters.
  95.     EXPERIENCE_VOCAB = "经验值"         # Title used for Experience.
  96.     NEXT_TOTAL_VOCAB = "下次 %s 经验值总数"  # Label used for total experience.
  97.    
  98.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  99.     # - Parameters Window Settings -
  100.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  101.     # These settings adjust the way the parameters window visually appears.
  102.     # Each of the stats have a non-window colour. Adjust them as you see fit.
  103.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  104.     PARAM_COLOUR ={
  105.     # ParamID => [:stat,       Colour1,                   Colour2          ],
  106.             2 => [ :atk, Color.new(225, 100, 100), Color.new(240, 150, 150)],
  107.             3 => [ :def, Color.new(250, 150,  30), Color.new(250, 180, 100)],
  108.             4 => [ :mat, Color.new( 70, 140, 200), Color.new(135, 180, 230)],
  109.             5 => [ :mdf, Color.new(135, 130, 190), Color.new(170, 160, 220)],
  110.             6 => [ :agi, Color.new( 60, 180,  80), Color.new(120, 200, 120)],
  111.             7 => [ :luk, Color.new(255, 240, 100), Color.new(255, 250, 200)],
  112.     } # Do not remove this.
  113.    
  114.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  115.     # - Properties Window Settings -
  116.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  117.     # These settings adjust the way the properties window visually appears.
  118.     # The properties have abbreviations, but leaving them as such makes things
  119.     # confusing (as it's sometimes hard to figure out what the abbreviations
  120.     # mean). Change the way the appear, whether or not they appear, and what
  121.     # order they will appear in.
  122.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  123.     PROPERTIES_FONT_SIZE = 16        # Font size used for properties.
  124.    
  125.     # These are the properties that appear in column 1.
  126.     PROPERTIES_COLUMN1 =[
  127.       [:hit, "命中率"],
  128.       [:eva, "躲避"],
  129.       [:cri, "致命一击"],
  130.       [:cev, "关键躲避"],
  131.       [:mev, "魔法躲避"],
  132.       [:mrf, "魔法反射"],
  133.       [:cnt, "反击"],
  134.       [:tgr, "目标攻击"],
  135.     ] # Do not remove this.
  136.    
  137.     # These are the properties that appear in column 2.
  138.     PROPERTIES_COLUMN2 =[
  139.       [:hrg, "伤兵恢复"],
  140.       [:mrg, "魔法再生"],
  141.       [:trg, "TP再生"],
  142.       [:rec, "恢复"],
  143.       [:grd, "防御力"],
  144.       [:pha, "物品使用"],
  145.       [:exr, "经验值获得"],
  146.       [:tcr, "TP模式"],
  147.     ] # Do not remove this.
  148.    
  149.     # These are the properties that appear in column 3.
  150.     PROPERTIES_COLUMN3 =[
  151.       [:hcr, "士兵消费伤害"],    # Requires YEA - Skill Cost Manager
  152.       [:mcr, "魔法消费伤害"],
  153.       [:tcr, "士气消费伤害"],    # Requires YEA - Skill Cost Manager
  154.       [:cdr, "硬直伤害"],   # Requires YEA - Skill Restrictions
  155.       [:wur, "激励伤害"],     # Requires YEA - Skill Restrictions
  156.       [:pdr, "物理伤害"],
  157.       [:mdr, "魔法伤害"],
  158.       [:fdr, "基本伤害"],
  159.     ] # Do not remove this.
  160.    
  161.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  162.     # - Biography Window Settings -
  163.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  164.     # These settings adjust the way the biography appears including the title
  165.     # used at the top, the font size, and whatnot.
  166.     #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  167.     BIOGRAPHY_NICKNAME_TEXT = "%s the %s"   # How the nickname will appear.
  168.     BIOGRAPHY_NICKNAME_SIZE = 32            # Size of the font used.
  169.    
  170.      
  171.    
  172.   end # STATUS
  173. end # YEA

  174. #==============================================================================
  175. # ▼ Editting anything past this point may potentially result in causing
  176. # computer damage, incontinence, explosion of user's head, coma, death, and/or
  177. # halitosis so edit at your own risk.
  178. #==============================================================================

  179. #==============================================================================
  180. # ■ Numeric
  181. #==============================================================================

  182. class Numeric
  183.   
  184.   #--------------------------------------------------------------------------
  185.   # new method: group_digits
  186.   #--------------------------------------------------------------------------
  187.   unless $imported["YEA-CoreEngine"]
  188.   def group; return self.to_s; end
  189.   end # $imported["YEA-CoreEngine"]
  190.    
  191. end # Numeric

  192. #==============================================================================
  193. # ■ Game_Temp
  194. #==============================================================================

  195. class Game_Temp
  196.   
  197.   #--------------------------------------------------------------------------
  198.   # public instance variables
  199.   #--------------------------------------------------------------------------
  200.   attr_accessor :scene_status_index
  201.   attr_accessor :scene_status_oy
  202.   
  203. end # Game_Temp

  204. #==============================================================================
  205. # ■ Game_Actor
  206. #==============================================================================

  207. class Game_Actor < Game_Battler
  208.   
  209.   #--------------------------------------------------------------------------
  210.   # new method: description=
  211.   #--------------------------------------------------------------------------
  212.   def description=(text)
  213.     @description = text
  214.   end
  215.   
  216.   #--------------------------------------------------------------------------
  217.   # overwrite method: description
  218.   #--------------------------------------------------------------------------
  219.   def description
  220.     return @description unless @description.nil?
  221.     return actor.description
  222.   end
  223.   
  224. end # Game_Actor

  225. #==============================================================================
  226. # ■ Window_StatusCommand
  227. #==============================================================================

  228. class Window_StatusCommand < Window_Command
  229.   
  230.   #--------------------------------------------------------------------------
  231.   # public instance variables
  232.   #--------------------------------------------------------------------------
  233.   attr_accessor :item_window
  234.   
  235.   #--------------------------------------------------------------------------
  236.   # initialize
  237.   #--------------------------------------------------------------------------
  238.   def initialize(dx, dy)
  239.     super(dx, dy)
  240.     [url=home.php?mod=space&uid=95897]@actor[/url] = nil
  241.   end
  242.   
  243.   #--------------------------------------------------------------------------
  244.   # window_width
  245.   #--------------------------------------------------------------------------
  246.   def window_width; return 160; end
  247.   
  248.   #--------------------------------------------------------------------------
  249.   # actor=
  250.   #--------------------------------------------------------------------------
  251.   def actor=(actor)
  252.     return if @actor == actor
  253.     @actor = actor
  254.     refresh
  255.   end
  256.   
  257.   #--------------------------------------------------------------------------
  258.   # visible_line_number
  259.   #--------------------------------------------------------------------------
  260.   def visible_line_number; return 4; end
  261.   
  262.   #--------------------------------------------------------------------------
  263.   # ok_enabled?
  264.   #--------------------------------------------------------------------------
  265.   def ok_enabled?
  266.     return handle?(current_symbol)
  267.   end
  268.   
  269.   #--------------------------------------------------------------------------
  270.   # make_command_list
  271.   #--------------------------------------------------------------------------
  272.   def make_command_list
  273.     return unless @actor
  274.     for command in YEA::STATUS::COMMANDS
  275.       case command[0]
  276.       #--- Default ---
  277.       when :general, :parameters, :properties, :biography
  278.         add_command(command[1], command[0])
  279.       #--- Yanfly Engine Ace ---
  280.       when :rename
  281.         next unless $imported["YEA-RenameActor"]
  282.         add_command(command[1], command[0], @actor.rename_allow?)
  283.       when :retitle
  284.         next unless $imported["YEA-RenameActor"]
  285.         add_command(command[1], command[0], @actor.retitle_allow?)
  286.       #--- Custom Commands ---
  287.       else
  288.         process_custom_command(command)
  289.       end
  290.     end
  291.     if !$game_temp.scene_status_index.nil?
  292.       select($game_temp.scene_status_index)
  293.       self.oy = $game_temp.scene_status_oy
  294.     end
  295.     $game_temp.scene_status_index = nil
  296.     $game_temp.scene_status_oy = nil
  297.   end
  298.   
  299.   #--------------------------------------------------------------------------
  300.   # process_ok
  301.   #--------------------------------------------------------------------------
  302.   def process_ok
  303.     $game_temp.scene_status_index = index
  304.     $game_temp.scene_status_oy = self.oy
  305.     super
  306.   end
  307.   
  308.   #--------------------------------------------------------------------------
  309.   # process_custom_command
  310.   #--------------------------------------------------------------------------
  311.   def process_custom_command(command)
  312.     return unless YEA::STATUS::CUSTOM_STATUS_COMMANDS.include?(command[0])
  313.     show = YEA::STATUS::CUSTOM_STATUS_COMMANDS[command[0]][1]
  314.     continue = show <= 0 ? true : $game_switches[show]
  315.     return unless continue
  316.     text = command[1]
  317.     switch = YEA::STATUS::CUSTOM_STATUS_COMMANDS[command[0]][0]
  318.     enabled = switch <= 0 ? true : $game_switches[switch]
  319.     add_command(text, command[0], enabled)
  320.   end
  321.   
  322.   #--------------------------------------------------------------------------
  323.   # update
  324.   #--------------------------------------------------------------------------
  325.   def update
  326.     super
  327.     update_item_window
  328.   end
  329.   
  330.   #--------------------------------------------------------------------------
  331.   # update_item_window
  332.   #--------------------------------------------------------------------------
  333.   def update_item_window
  334.     return if @item_window.nil?
  335.     return if @current_index == current_symbol
  336.     @current_index = current_symbol
  337.     @item_window.refresh
  338.   end
  339.   
  340.   #--------------------------------------------------------------------------
  341.   # item_window=
  342.   #--------------------------------------------------------------------------
  343.   def item_window=(window)
  344.     @item_window = window
  345.     update
  346.   end
  347.   
  348.   #--------------------------------------------------------------------------
  349.   # update_help
  350.   #--------------------------------------------------------------------------
  351.   def update_help
  352.     return if @actor.nil?
  353.     @help_window.set_text(@actor.actor.description)
  354.   end
  355.   
  356. end # Window_StatusCommand

  357. #==============================================================================
  358. # ■ Window_StatusActor
  359. #==============================================================================

  360. class Window_StatusActor < Window_Base
  361.   
  362.   #--------------------------------------------------------------------------
  363.   # initialize
  364.   #--------------------------------------------------------------------------
  365.   def initialize(dx, dy)
  366.     super(dx, dy, window_width, fitting_height(4))
  367.     @actor = nil
  368.   end
  369.   
  370.   #--------------------------------------------------------------------------
  371.   # window_width
  372.   #--------------------------------------------------------------------------
  373.   def window_width; return Graphics.width - 160; end
  374.   
  375.   #--------------------------------------------------------------------------
  376.   # actor=
  377.   #--------------------------------------------------------------------------
  378.   def actor=(actor)
  379.     return if @actor == actor
  380.     @actor = actor
  381.     refresh
  382.   end
  383.   
  384.   #--------------------------------------------------------------------------
  385.   # refresh
  386.   #--------------------------------------------------------------------------
  387.   def refresh
  388.     contents.clear
  389.     return unless @actor
  390.     draw_actor_face(@actor, 0, 0)
  391.     draw_actor_simple_status(@actor, 108, line_height / 2)
  392.   end
  393.   
  394. end # Window_StatusActor

  395. #==============================================================================
  396. # ■ Window_StatusItem
  397. #==============================================================================

  398. class Window_StatusItem < Window_Base
  399.   
  400.   #--------------------------------------------------------------------------
  401.   # initialize
  402.   #--------------------------------------------------------------------------
  403.   def initialize(dx, dy, command_window)
  404.     super(dx, dy, Graphics.width, Graphics.height - dy)
  405.     @command_window = command_window
  406.     @actor = nil
  407.     refresh
  408.   end
  409.   
  410.   #--------------------------------------------------------------------------
  411.   # actor=
  412.   #--------------------------------------------------------------------------
  413.   def actor=(actor)
  414.     return if @actor == actor
  415.     @actor = actor
  416.     refresh
  417.   end
  418.   
  419.   #--------------------------------------------------------------------------
  420.   # refresh
  421.   #--------------------------------------------------------------------------
  422.   def refresh
  423.     contents.clear
  424.     reset_font_settings
  425.     return unless @actor
  426.     draw_window_contents
  427.   end
  428.   
  429.   #--------------------------------------------------------------------------
  430.   # draw_window_contents
  431.   #--------------------------------------------------------------------------
  432.   def draw_window_contents
  433.     case @command_window.current_symbol
  434.     when :general
  435.       draw_actor_general
  436.     when :parameters
  437.       draw_parameter_graph
  438.     when :properties
  439.       draw_properties_list
  440.     when :biography, :rename, :retitle
  441.       draw_actor_biography
  442.     else
  443.       draw_custom
  444.     end
  445.   end
  446.   
  447.   #--------------------------------------------------------------------------
  448.   # draw_actor_general
  449.   #--------------------------------------------------------------------------
  450.   def draw_actor_general
  451.     change_color(system_color)
  452.     text = YEA::STATUS::PARAMETERS_VOCAB
  453.     draw_text(0, 0, contents.width/2, line_height, text, 1)
  454.     text = YEA::STATUS::EXPERIENCE_VOCAB
  455.     draw_text(contents.width/2, 0, contents.width/2, line_height, text, 1)
  456.     draw_general_parameters
  457.     draw_general_experience
  458.   end
  459.   
  460.   #--------------------------------------------------------------------------
  461.   # draw_general_parameters
  462.   #--------------------------------------------------------------------------
  463.   def draw_general_parameters
  464.     dx = 24
  465.     dy = line_height / 2
  466.     draw_actor_level(dx, line_height*1+dy, contents.width/2 - 24)
  467.     draw_actor_param(0, dx, line_height*2+dy, contents.width/2 - 24)
  468.     draw_actor_param(1, dx, line_height*3+dy, contents.width/2 - 24)
  469.     draw_actor_param(2, dx, line_height*4+dy, contents.width/4 - 12)
  470.     draw_actor_param(4, dx, line_height*5+dy, contents.width/4 - 12)
  471.     draw_actor_param(6, dx, line_height*6+dy, contents.width/4 - 12)
  472.     dx += contents.width/4 - 12
  473.     draw_actor_param(3, dx, line_height*4+dy, contents.width/4 - 12)
  474.     draw_actor_param(5, dx, line_height*5+dy, contents.width/4 - 12)
  475.     draw_actor_param(7, dx, line_height*6+dy, contents.width/4 - 12)
  476.   end
  477.   
  478.   #--------------------------------------------------------------------------
  479.   # draw_actor_level
  480.   #--------------------------------------------------------------------------
  481.   def draw_actor_level(dx, dy, dw)
  482.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  483.     rect = Rect.new(dx+1, dy+1, dw-2, line_height-2)
  484.     contents.fill_rect(rect, colour)
  485.     change_color(system_color)
  486.     draw_text(dx+4, dy, dw-8, line_height, Vocab::level)
  487.     change_color(normal_color)
  488.     draw_text(dx+4, dy, dw-8, line_height, @actor.level.group, 2)
  489.   end
  490.   
  491.   #--------------------------------------------------------------------------
  492.   # draw_actor_param
  493.   #--------------------------------------------------------------------------
  494.   def draw_actor_param(param_id, dx, dy, dw)
  495.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  496.     rect = Rect.new(dx+1, dy+1, dw-2, line_height-2)
  497.     contents.fill_rect(rect, colour)
  498.     change_color(system_color)
  499.     draw_text(dx+4, dy, dw-8, line_height, Vocab::param(param_id))
  500.     change_color(normal_color)
  501.     draw_text(dx+4, dy, dw-8, line_height, @actor.param(param_id).group, 2)
  502.   end
  503.   
  504.   #--------------------------------------------------------------------------
  505.   # draw_general_experience
  506.   #--------------------------------------------------------------------------
  507.   def draw_general_experience
  508.     if @actor.max_level?
  509.       s1 = @actor.exp.group
  510.       s2 = "-------"
  511.       s3 = "-------"
  512.     else
  513.       s1 = @actor.exp.group
  514.       s2 = (@actor.next_level_exp - @actor.exp).group
  515.       s3 = @actor.next_level_exp.group
  516.     end
  517.     s_next = sprintf(Vocab::ExpNext, Vocab::level)
  518.     total_next_text = sprintf(YEA::STATUS::NEXT_TOTAL_VOCAB, Vocab::level)
  519.     change_color(system_color)
  520.     dx = contents.width/2 + 12
  521.     dy = line_height * 3 / 2
  522.     dw = contents.width/2 - 36
  523.     draw_text(dx, dy + line_height * 0, dw, line_height, Vocab::ExpTotal)
  524.     draw_text(dx, dy + line_height * 2, dw, line_height, s_next)
  525.     draw_text(dx, dy + line_height * 4, dw, line_height, total_next_text)
  526.     change_color(normal_color)
  527.     draw_text(dx, dy + line_height * 1, dw, line_height, s1, 2)
  528.     draw_text(dx, dy + line_height * 3, dw, line_height, s2, 2)
  529.     draw_text(dx, dy + line_height * 5, dw, line_height, s3, 2)
  530.   end
  531.   
  532.   #--------------------------------------------------------------------------
  533.   # draw_parameter_graph
  534.   #--------------------------------------------------------------------------
  535.   def draw_parameter_graph
  536.     draw_parameter_title
  537.     dy = line_height * 3/2
  538.     maximum = 1
  539.     minimum = @actor.param_max(2)
  540.     for i in 2..7
  541.       maximum = [@actor.param(i), maximum].max
  542.       minimum = [@actor.param(i), minimum].min
  543.     end
  544.     maximum += minimum * 0.33 unless maximum == minimum
  545.     for i in 2..7
  546.       rate = calculate_rate(maximum, minimum, i)
  547.       dy = line_height * i - line_height/2
  548.       draw_param_gauge(i, dy, rate)
  549.       change_color(system_color)
  550.       draw_text(28, dy, contents.width - 56, line_height, Vocab::param(i))
  551.       dw = (contents.width - 48) * rate - 8
  552.       change_color(normal_color)
  553.       draw_text(28, dy, dw, line_height, @actor.param(i).group, 2)
  554.     end
  555.   end
  556.   
  557.   #--------------------------------------------------------------------------
  558.   # calculate_rate
  559.   #--------------------------------------------------------------------------
  560.   def calculate_rate(maximum, minimum, param_id)
  561.     return 1.0 if maximum == minimum
  562.     rate = (@actor.param(param_id).to_f - minimum) / (maximum - minimum).to_f
  563.     rate *= 0.67
  564.     rate += 0.33
  565.     return rate
  566.   end
  567.   
  568.   #--------------------------------------------------------------------------
  569.   # draw_param_gauge
  570.   #--------------------------------------------------------------------------
  571.   def draw_param_gauge(param_id, dy, rate)
  572.     dw = contents.width - 48
  573.     colour1 = param_gauge1(param_id)
  574.     colour2 = param_gauge2(param_id)
  575.     draw_gauge(24, dy, dw, rate, colour1, colour2)
  576.   end
  577.   
  578.   #--------------------------------------------------------------------------
  579.   # param_gauge1
  580.   #--------------------------------------------------------------------------
  581.   def param_gauge1(param_id)
  582.     return YEA::STATUS::PARAM_COLOUR[param_id][1]
  583.   end
  584.   
  585.   #--------------------------------------------------------------------------
  586.   # param_gauge2
  587.   #--------------------------------------------------------------------------
  588.   def param_gauge2(param_id)
  589.     return YEA::STATUS::PARAM_COLOUR[param_id][2]
  590.   end
  591.   
  592.   #--------------------------------------------------------------------------
  593.   # draw_parameter_title
  594.   #--------------------------------------------------------------------------
  595.   def draw_parameter_title
  596.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  597.     rect = Rect.new(0, 0, contents.width, contents.height)
  598.     contents.fill_rect(rect, colour)
  599.     change_color(system_color)
  600.     text = YEA::STATUS::PARAMETERS_VOCAB
  601.     draw_text(0, line_height/3, contents.width, line_height, text, 1)
  602.   end
  603.   
  604.   #--------------------------------------------------------------------------
  605.   # draw_properties_list
  606.   #--------------------------------------------------------------------------
  607.   def draw_properties_list
  608.     contents.font.size = YEA::STATUS::PROPERTIES_FONT_SIZE
  609.     draw_properties_column1
  610.     draw_properties_column2
  611.     draw_properties_column3
  612.     reset_font_settings
  613.   end
  614.   
  615.   #--------------------------------------------------------------------------
  616.   # draw_properties_column1
  617.   #--------------------------------------------------------------------------
  618.   def draw_properties_column1
  619.     dx = 24
  620.     dw = (contents.width - 24) / 3 - 24
  621.     dy = 0
  622.     for property in YEA::STATUS::PROPERTIES_COLUMN1
  623.       dy = draw_property(property, dx, dy, dw)
  624.     end
  625.   end
  626.   
  627.   #--------------------------------------------------------------------------
  628.   # draw_properties_column2
  629.   #--------------------------------------------------------------------------
  630.   def draw_properties_column2
  631.     dx = 24 + (contents.width - 24) / 3
  632.     dw = (contents.width - 24) / 3 - 24
  633.     dy = 0
  634.     for property in YEA::STATUS::PROPERTIES_COLUMN2
  635.       dy = draw_property(property, dx, dy, dw)
  636.     end
  637.   end
  638.   
  639.   #--------------------------------------------------------------------------
  640.   # draw_properties_column3
  641.   #--------------------------------------------------------------------------
  642.   def draw_properties_column3
  643.     dx = 24 + (contents.width - 24) / 3 * 2
  644.     dw = (contents.width - 24) / 3 - 24
  645.     dy = 0
  646.     for property in YEA::STATUS::PROPERTIES_COLUMN3
  647.       dy = draw_property(property, dx, dy, dw)
  648.     end
  649.   end
  650.   
  651.   #--------------------------------------------------------------------------
  652.   # draw_property
  653.   #--------------------------------------------------------------------------
  654.   def draw_property(property, dx, dy, dw)
  655.     case property[0]
  656.     #---
  657.     when :hit
  658.       fmt = "%1.2f%%"
  659.       value = sprintf(fmt, @actor.hit * 100)
  660.     when :eva
  661.       fmt = "%1.2f%%"
  662.       value = sprintf(fmt, @actor.eva * 100)
  663.     when :cri
  664.       fmt = "%1.2f%%"
  665.       value = sprintf(fmt, @actor.cri * 100)
  666.     when :cev
  667.       fmt = "%1.2f%%"
  668.       value = sprintf(fmt, @actor.cev * 100)
  669.     when :mev
  670.       fmt = "%1.2f%%"
  671.       value = sprintf(fmt, @actor.mev * 100)
  672.     when :mrf
  673.       fmt = "%1.2f%%"
  674.       value = sprintf(fmt, @actor.mrf * 100)
  675.     when :hrg
  676.       fmt = "%1.2f%%"
  677.       value = sprintf(fmt, @actor.hrg * 100)
  678.     when :mrg
  679.       fmt = "%1.2f%%"
  680.       value = sprintf(fmt, @actor.mrg * 100)
  681.     when :trg
  682.       fmt = "%1.2f%%"
  683.       value = sprintf(fmt, @actor.trg * 100)
  684.     when :tgr
  685.       fmt = "%1.2f%%"
  686.       value = sprintf(fmt, @actor.tgr * 100)
  687.     when :grd
  688.       fmt = "%1.2f%%"
  689.       value = sprintf(fmt, @actor.grd * 100)
  690.     when :rec
  691.       fmt = "%1.2f%%"
  692.       value = sprintf(fmt, @actor.rec * 100)
  693.     when :pha
  694.       fmt = "%1.2f%%"
  695.       value = sprintf(fmt, @actor.pha * 100)
  696.     when :mcr
  697.       fmt = "%1.2f%%"
  698.       value = sprintf(fmt, @actor.mcr * 100)
  699.     when :tcr
  700.       fmt = "%1.2f%%"
  701.       value = sprintf(fmt, @actor.tcr * 100)
  702.     when :pdr
  703.       fmt = "%1.2f%%"
  704.       value = sprintf(fmt, @actor.pdr * 100)
  705.     when :mdr
  706.       fmt = "%1.2f%%"
  707.       value = sprintf(fmt, @actor.mdr * 100)
  708.     when :fdr
  709.       fmt = "%1.2f%%"
  710.       value = sprintf(fmt, @actor.fdr * 100)
  711.     when :exr
  712.       fmt = "%1.2f%%"
  713.       value = sprintf(fmt, @actor.exr * 100)
  714.     when :hcr
  715.       return dy unless $imported["YEA-SkillCostManager"]
  716.       fmt = "%1.2f%%"
  717.       value = sprintf(fmt, @actor.hcr * 100)
  718.     when :tcr
  719.       return dy unless $imported["YEA-SkillCostManager"]
  720.       fmt = "%1.2f%%"
  721.       value = sprintf(fmt, @actor.tcr * 100)
  722.     when :gcr
  723.       return dy unless $imported["YEA-SkillCostManager"]
  724.       fmt = "%1.2f%%"
  725.       value = sprintf(fmt, @actor.gcr * 100)
  726.     when :cdr
  727.       return dy unless $imported["YEA-SkillRestrictions"]
  728.       fmt = "%1.2f%%"
  729.       value = sprintf(fmt, @actor.cdr * 100)
  730.     when :wur
  731.       return dy unless $imported["YEA-SkillRestrictions"]
  732.       fmt = "%1.2f%%"
  733.       value = sprintf(fmt, @actor.wur * 100)
  734.     #---
  735.     else; return dy
  736.     end
  737.     colour = Color.new(0, 0, 0, translucent_alpha/2)
  738.     rect = Rect.new(dx+1, dy+1, dw-2, line_height-2)
  739.     contents.fill_rect(rect, colour)
  740.     change_color(system_color)
  741.     draw_text(dx+4, dy, dw-8, line_height, property[1], 0)
  742.     change_color(normal_color)
  743.     draw_text(dx+4, dy, dw-8, line_height, value, 2)
  744.     return dy + line_height
  745.   end
  746.   
  747.   #--------------------------------------------------------------------------
  748.   # draw_actor_biography
  749.   #--------------------------------------------------------------------------
  750.   def draw_actor_biography
  751.     fmt = YEA::STATUS::BIOGRAPHY_NICKNAME_TEXT
  752.     text = sprintf(fmt, @actor.name, @actor.nickname)
  753.     contents.font.size = YEA::STATUS::BIOGRAPHY_NICKNAME_SIZE
  754.     draw_text(0, 0, contents.width, line_height*2, text, 1)
  755.     reset_font_settings
  756.     draw_text_ex(24, line_height*2, @actor.description)
  757.   end
  758.   
  759.   #--------------------------------------------------------------------------
  760.   # draw_custom
  761.   #--------------------------------------------------------------------------
  762.   def draw_custom
  763.     current_symbol = @command_window.current_symbol
  764.     return unless YEA::STATUS::CUSTOM_STATUS_COMMANDS.include?(current_symbol)
  765.     method(YEA::STATUS::CUSTOM_STATUS_COMMANDS[current_symbol][3]).call
  766.   end
  767.   
  768.   #--------------------------------------------------------------------------
  769.   # draw_custom1
  770.   #--------------------------------------------------------------------------
  771.   def draw_custom1
  772.     dx = 0; dy = 0
  773.     for skill in @actor.skills
  774.       next if skill.nil?
  775.       next unless @actor.added_skill_types.include?(skill.stype_id)
  776.       draw_item_name(skill, dx, dy)
  777.       dx = dx == contents.width / 2 + 16 ? 0 : contents.width / 2 + 16
  778.       dy += line_height if dx == 0
  779.       return if dy + line_height > contents.height
  780.     end
  781.   end
  782.   
  783.   #--------------------------------------------------------------------------
  784.   # draw_custom2
  785.   #--------------------------------------------------------------------------
  786.   def draw_custom2
  787.     dx = 4; dy = 0; slot_id = 0
  788.     for equip in @actor.equips
  789.       change_color(system_color)
  790.       text = Vocab.etype(@actor.equip_slots[slot_id])
  791.       draw_text(dx, dy, contents.width - dx, line_height, text)
  792.       reset_font_settings
  793.       draw_item_name(equip, dx+92, dy) unless equip.nil?
  794.       slot_id += 1
  795.       dy += line_height
  796.       break if dy + line_height > contents.height
  797.     end
  798.     dw = Graphics.width * 2 / 5 - 24
  799.     dx = contents.width - dw; dy = 0
  800.     param_id = 0
  801.     8.times do
  802.       colour = Color.new(0, 0, 0, translucent_alpha/2)
  803.       rect = Rect.new(dx+1, dy+1, dw - 2, line_height - 2)
  804.       contents.fill_rect(rect, colour)
  805.       size = $imported["YEA-AceEquipEngine"] ? YEA::EQUIP::STATUS_FONT_SIZE : 20
  806.       contents.font.size = size
  807.       change_color(system_color)
  808.       draw_text(dx+4, dy, dw, line_height, Vocab::param(param_id))
  809.       change_color(normal_color)
  810.       dwa = (Graphics.width * 2 / 5 - 2) / 2
  811.       draw_text(dx, dy, dwa, line_height, @actor.param(param_id).group, 2)
  812.       reset_font_settings
  813.       change_color(system_color)
  814.       draw_text(dx + dwa, dy, 22, line_height, "→", 1)
  815.       param_id += 1
  816.       dy += line_height
  817.       break if dy + line_height > contents.height
  818.     end
  819.   end
  820.   
  821.   #--------------------------------------------------------------------------
  822.   # draw_custom3
  823.   #--------------------------------------------------------------------------
  824.   def draw_custom3
  825.     return unless $imported["YEA-ClassSystem"]
  826.     data = []
  827.     for class_id in YEA::CLASS_SYSTEM::CLASS_ORDER
  828.       next if $data_classes[class_id].nil?
  829.       item = $data_classes[class_id]
  830.       next unless @actor.unlocked_classes.include?(item.id) or
  831.         YEA::CLASS_SYSTEM::DEFAULT_UNLOCKS.include?(item.id)
  832.       data.push(item)
  833.     end
  834.     dx = 0; dy = 0; class_index = 0
  835.     for class_id in data
  836.       item = data[class_index]
  837.       reset_font_settings
  838.       if item == @actor.class
  839.         change_color(text_color(YEA::CLASS_SYSTEM::CURRENT_CLASS_COLOUR))
  840.       elsif item == @actor.subclass
  841.         change_color(text_color(YEA::CLASS_SYSTEM::SUBCLASS_COLOUR))
  842.       else
  843.         change_color(normal_color)
  844.       end
  845.       icon = item.icon_index
  846.       draw_icon(icon, dx, dy)
  847.       text = item.name
  848.       draw_text(24, dy, contents.width-24, line_height, text)
  849.       next if YEA::CLASS_SYSTEM::MAINTAIN_LEVELS
  850.       level = @actor.class_level(item.id)
  851.       contents.font.size = YEA::CLASS_SYSTEM::LEVEL_FONT_SIZE
  852.       text = sprintf(YEA::CLASS_SYSTEM::CLASS_LEVEL, level.group)
  853.       dwa = contents.width - (Graphics.width * 2 / 5 - 24) - 28
  854.       draw_text(dx, dy, dwa, line_height, text, 2)
  855.       class_index += 1
  856.       dy += line_height
  857.       break if dy + line_height > contents.height
  858.     end
  859.     dw = Graphics.width * 2 / 5 - 24
  860.     dx = contents.width - dw; dy = 0
  861.     param_id = 0
  862.     8.times do
  863.       colour = Color.new(0, 0, 0, translucent_alpha/2)
  864.       rect = Rect.new(dx+1, dy+1, dw - 2, line_height - 2)
  865.       contents.fill_rect(rect, colour)
  866.       contents.font.size = YEA::CLASS_SYSTEM::PARAM_FONT_SIZE
  867.       change_color(system_color)
  868.       draw_text(dx+4, dy, dw, line_height, Vocab::param(param_id))
  869.       change_color(normal_color)
  870.       dwa = (Graphics.width * 2 / 5 - 2) / 2
  871.       draw_text(dx, dy, dwa, line_height, @actor.param(param_id).group, 2)
  872.       reset_font_settings
  873.       change_color(system_color)
  874.       draw_text(dx + dwa, dy, 22, line_height, "→", 1)
  875.       param_id += 1
  876.       dy += line_height
  877.       break if dy + line_height > contents.height
  878.     end
  879.   end
  880.   
  881. end # Window_StatusItem

  882. #==============================================================================
  883. # ■ Scene_Status
  884. #==============================================================================

  885. class Scene_Status < Scene_MenuBase
  886.   
  887.   #--------------------------------------------------------------------------
  888.   # start
  889.   #--------------------------------------------------------------------------
  890.   def start
  891.     super
  892.      
  893.     create_help_window
  894.     create_command_window
  895.     create_status_window
  896.     create_item_window
  897.     relocate_windows
  898.   end
  899.   
  900.   #--------------------------------------------------------------------------
  901.   # create_command_window
  902.   #--------------------------------------------------------------------------
  903.   def create_command_window
  904.     wy = @help_window.height
  905.     @command_window = Window_StatusCommand.new(0, wy)
  906.     @command_window.viewport = @viewport
  907.     @command_window.actor = @actor
  908.     @command_window.help_window = @help_window
  909.     @command_window.set_handler(:cancel,   method(:return_scene))
  910.     @command_window.set_handler(:pagedown, method(:next_actor))
  911.     @command_window.set_handler(:pageup,   method(:prev_actor))
  912.     process_custom_status_commands
  913.   end
  914.   
  915.   #--------------------------------------------------------------------------
  916.   # process_custom_status_commands
  917.   #--------------------------------------------------------------------------
  918.   def process_custom_status_commands
  919.     for command in YEA::STATUS::COMMANDS
  920.       next unless YEA::STATUS::CUSTOM_STATUS_COMMANDS.include?(command[0])
  921.       called_method = YEA::STATUS::CUSTOM_STATUS_COMMANDS[command[0]][2]
  922.       @command_window.set_handler(command[0], method(called_method))
  923.     end
  924.   end
  925.   
  926.   #--------------------------------------------------------------------------
  927.   # create_status_window
  928.   #--------------------------------------------------------------------------
  929.   def create_status_window
  930.     wy = @help_window.height
  931.     @status_window = Window_StatusActor.new(@command_window.width, wy)
  932.     @status_window.viewport = @viewport
  933.     @status_window.actor = @actor
  934.   end
  935.   
  936.   #--------------------------------------------------------------------------
  937.   # create_item_window
  938.   #--------------------------------------------------------------------------
  939.   def create_item_window
  940.     dy = @command_window.y + @command_window.height
  941.     @item_window = Window_StatusItem.new(0, dy, @command_window)
  942.     @item_window.viewport = @viewport
  943.     @item_window.actor = @actor
  944.     @command_window.item_window = @item_window
  945.   end
  946.   
  947.   #--------------------------------------------------------------------------
  948.   # relocate_windows
  949.   #--------------------------------------------------------------------------
  950.   def relocate_windows
  951.     return unless $imported["YEA-AceMenuEngine"]
  952.     case Menu.help_window_location
  953.     when 0 # Top
  954.       @help_window.y = 0
  955.       @command_window.y = @help_window.height
  956.       @item_window.y = @command_window.y + @command_window.height
  957.     when 1 # Middle
  958.       @command_window.y = 0
  959.       @help_window.y = @command_window.height
  960.       @item_window.y = @help_window.y + @help_window.height
  961.     else # Bottom
  962.       @command_window.y = 0
  963.       @item_window.y = @command_window.height
  964.       @help_window.y = @item_window.y + @item_window.height
  965.     end
  966.     @status_window.y = @command_window.y
  967.   end
  968.   
  969.   #--------------------------------------------------------------------------
  970.   # on_actor_change
  971.   #--------------------------------------------------------------------------
  972.   def on_actor_change
  973.     @command_window.actor = @actor
  974.     @status_window.actor = @actor
  975.     @item_window.actor = @actor
  976.     @command_window.activate
  977.   end
  978.   
  979.   #--------------------------------------------------------------------------
  980.   # new method: command_name1
  981.   #--------------------------------------------------------------------------
  982.   def command_name1
  983.     SceneManager.call(Scene_Skill)
  984.   end
  985.   
  986.   #--------------------------------------------------------------------------
  987.   # new method: command_name2
  988.   #--------------------------------------------------------------------------
  989.   def command_name2
  990.     SceneManager.call(Scene_Equip)
  991.   end
  992.   
  993.   #--------------------------------------------------------------------------
  994.   # new method: command_name3
  995.   #--------------------------------------------------------------------------
  996.   def command_name3
  997.     unless $imported["YEA-ClassSystem"]
  998.       @command_window.activate
  999.       return
  1000.     end
  1001.     SceneManager.call(Scene_Class)
  1002.   end
  1003.   
  1004. end # Scene_Status

  1005. #==============================================================================
  1006. #
  1007. # ▼ End of File
  1008. #
  1009. #==============================================================================
复制代码
死亡
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
665
在线时间
194 小时
注册时间
2012-6-1
帖子
720
5
发表于 2013-2-23 12:21:27 | 只看该作者
你看看是不是这个

点评

没有灌水啊 连帖是怕脚本和语言重合 后来验证了不会重合  发表于 2013-2-23 23:04
此楼层有连帖和灌水的嫌疑喔!请注意~  发表于 2013-2-23 23:02
这脚本不错,只是最上面说明窗口和传记重覆,有点多余了,如果省略掉那下方的显示空间可以更宽裕,现成的中文化,借用了嘿。  发表于 2013-2-23 21:59
死亡
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
77 小时
注册时间
2006-6-12
帖子
95
6
 楼主| 发表于 2013-2-23 13:58:37 | 只看该作者
method(:next_actor)
看到这一句就知道这个没用,这个还是只能在队伍成员里切换,我要的是按角色列表翻页的,求怎么用脚本做
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
687 小时
注册时间
2012-10-29
帖子
1543
7
发表于 2013-2-23 21:49:27 | 只看该作者
如果是要取得数据库的角色资料,那何不直接用 $data_actors[id] 来做?读取到阵列中,再看您要怎么显示都可以,菜单状态页嘛,弄个按键后清除依序刷新指定角色内容就可以了。

点评

而且,楼主状态页显示的角色不是队伍中的,是数据库中的所有角色,按顺序排列来显示,看楼主敍述应该是这个意思。  发表于 2013-2-24 00:23
意思是菜单状态页不选角色,一开就是角色1,再按确认是角色2,一直到角色10后又回到角色1,循环...不过楼主举例时 3 和 2 顺序好像弄错了。  发表于 2013-2-24 00:21
他什么意思? 为啥我看不懂?  发表于 2013-2-23 22:01
修改劇本中,仔細審查原來的劇情大綱,覺得有點不太滿意,嘗試編寫不同主角不同主線的劇情,希望能寫得出來。
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
665
在线时间
194 小时
注册时间
2012-6-1
帖子
720
8
发表于 2013-2-23 22:11:39 | 只看该作者
好吧
LZ我终于终于知道你的意思了
在这儿看东西的话
按LR可以切换
也就是QW好像是啊
我也忘了循环的呦
死亡
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-18 10:23

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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