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

Project1

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

[已经解决] 求助,帮我把提示窗口去掉

[复制链接]

Lv1.梦旅人

梦石
0
星屑
196
在线时间
835 小时
注册时间
2012-9-16
帖子
1811
跳转到指定楼层
1
发表于 2013-10-29 18:24:40 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

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

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

x
下面这个脚本,就单纯保留物品图标的描绘和上升那种效果。反正就是不要提示窗口就对了。@丿梁丶小柒 @Password @
  1. #==============================================================================
  2. # 动态显示的宝箱 v1.1 (old name: Chest Item Pop-Up)
  3. #------------------------------------------------------------------------------
  4. # 作者  : OriginalWij
  5. #------------------------------------------------------------------------------
  6. # 版本信息:
  7. #
  8. # v1.0
  9. # - 初版
  10. # v1.1
  11. # - 添加提示窗体
  12. #------------------------------------------------------------------------------
  13. # 注意: ① 得失物品/金钱之前,请先打开指定开关
  14. #       ② 得失多个物品时,在多个物品之间插入一个wait(1),详见范例工程
  15. #------------------------------------------------------------------------------
  16. # 汉化版改动: ① 去掉开关自动还原功能
  17. #             ② 按中文习惯显示描述信息
  18. #             ③ 在描述信息中描绘图标
  19. #             ④ 窗体屏幕居中显示
  20. #             ⑤ 增加提示窗体自动关闭功能
  21. #==============================================================================
  22.   # "金钱" 图标序号
  23.   GOLD_ICON = 205
  24.   # 激活动态显示的开关序号,默认为1号开关
  25.   POPUP_SWITCH = 100
  26.   # 得失物品的声音设定
  27.   POPUP_SOUND = 'Chime2'
  28.   POPUP_SOUND_VOLUME = 100
  29.   POPUP_SOUND_PITCH = 150
  30.   
  31.   ## 提示窗体自动关闭的时间(以帧计算)
  32.   WAIT_TIME = 180
  33. #==============================================================================
  34. # Game_Interpreter
  35. #==============================================================================
  36. class Game_Interpreter
  37.   #--------------------------------------------------------------------------
  38.   # Get X
  39.   #--------------------------------------------------------------------------
  40.   def get_x
  41.     events = $game_map.events
  42.     x_coord = events[@event_id]
  43.     return x_coord.screen_x
  44.   end
  45.   #--------------------------------------------------------------------------
  46.   # Get Y
  47.   #--------------------------------------------------------------------------
  48.   def get_y
  49.     events = $game_map.events
  50.     y_coord = events[@event_id]
  51.     return y_coord.screen_y
  52.   end
  53.   #--------------------------------------------------------------------------
  54.   # Change Gold
  55.   #--------------------------------------------------------------------------
  56.   def command_125
  57.     value = operate_value(@params[0], @params[1], @params[2])
  58.     $game_party.gain_gold(value)
  59.     x_value = get_x
  60.     y_value = get_y
  61.     $scene = Chest_Popup.new(x_value, y_value, 0, value, 1) if $game_switches[POPUP_SWITCH]
  62.     return true
  63.   end
  64.   #--------------------------------------------------------------------------
  65.   # Change Items
  66.   #--------------------------------------------------------------------------
  67.   def command_126
  68.     value = operate_value(@params[1], @params[2], @params[3])
  69.     $game_party.gain_item($data_items[@params[0]], value)
  70.     $game_map.need_refresh = true
  71.     x_value = get_x
  72.     y_value = get_y
  73.     $scene = Chest_Popup.new(x_value, y_value, 1, value, @params[0]) if $game_switches[POPUP_SWITCH]
  74.     return true
  75.   end
  76.   #--------------------------------------------------------------------------
  77.   # Change Weapons
  78.   #--------------------------------------------------------------------------
  79.   def command_127
  80.     value = operate_value(@params[1], @params[2], @params[3])
  81.     $game_party.gain_item($data_weapons[@params[0]], value, @params[4])
  82.     x_value = get_x
  83.     y_value = get_y
  84.     $scene = Chest_Popup.new(x_value, y_value, 2, value, @params[0]) if $game_switches[POPUP_SWITCH]
  85.     return true
  86.   end
  87.   #--------------------------------------------------------------------------
  88.   # Change Armor
  89.   #--------------------------------------------------------------------------
  90.   def command_128
  91.     value = operate_value(@params[1], @params[2], @params[3])
  92.     $game_party.gain_item($data_armors[@params[0]], value, @params[4])
  93.     x_value = get_x
  94.     y_value = get_y
  95.     $scene = Chest_Popup.new(x_value, y_value, 3, value, @params[0]) if $game_switches[POPUP_SWITCH]
  96.     return true
  97.   end
  98. end

  99. #==============================================================================
  100. # Item Popup Window
  101. #==============================================================================
  102. class Item_Popup_Window < Window_Base
  103.   #--------------------------------------------------------------------------
  104.   # Initialize
  105.   #--------------------------------------------------------------------------
  106.   def initialize(x, y)
  107.     super(0, 0, 544, 416)
  108.     self.opacity = 0
  109.     @x = x - 26
  110.     @y = y - 56
  111.   end
  112.   #--------------------------------------------------------------------------
  113.   # Pop-Up
  114.   #--------------------------------------------------------------------------
  115.   def pop_up(icon_index, x, y)
  116.     self.contents.clear
  117.     draw_icon(icon_index, x, y, true)
  118.   end
  119. end

  120. #==============================================================================
  121. # Name window
  122. #==============================================================================
  123. class Name_Window < Window_Base
  124.   #--------------------------------------------------------------------------
  125.   # Initialize ## 去掉坐标传递,新增 icon_index
  126.   #--------------------------------------------------------------------------
  127.   def initialize(icon_index, desc, gold = false)
  128.     ## 此位图缓存应该不需要重载
  129.     width = Cache.system("Window").text_size(desc).width + 32
  130.     width += 24 if gold
  131.     ## 屏幕居中
  132.     x = (Graphics.width - width)/2
  133.     y = (Graphics.height - WLH-32)/2
  134.     super(x, y, width, WLH + 32)
  135.     if gold
  136.       self.contents.draw_text(0, 0, width-24, WLH, desc)
  137.       draw_icon(icon_index, width - 24-32, 0, true)
  138.     else
  139.       draw_icon(icon_index, 56, 0, true)
  140.       self.contents.draw_text(0, 0, width, WLH, desc)
  141.     end
  142.   end
  143. end

  144. #==============================================================================
  145. # Scene_Base
  146. #==============================================================================
  147. class Scene_Base
  148.   #--------------------------------------------------------------------------
  149.   # Create Snapshot for Using as Background of Another Screen
  150.   #--------------------------------------------------------------------------
  151.   def snapshot_for_background
  152.     $game_temp.background_bitmap.dispose
  153.     $game_temp.background_bitmap = Graphics.snap_to_bitmap
  154.     $game_temp.background_bitmap.blur if !$game_switches[POPUP_SWITCH]
  155.   end
  156. end

  157. #==============================================================================
  158. # Chest_Popup
  159. #==============================================================================
  160. class Chest_Popup < Scene_Base
  161.   #--------------------------------------------------------------------------
  162.   # Initialize
  163.   #--------------------------------------------------------------------------
  164.   def initialize(x, y, type, amount, index)
  165.     @x = x
  166.     @y = y
  167.     @amount = amount
  168.     [url=home.php?mod=space&uid=236945]@gold[/url] = false
  169.     case type
  170.     ## 改写成中文习惯
  171.     when 0 # gold
  172.       @icon_index = GOLD_ICON
  173.       @desc = '金钱: ' + @amount.to_s
  174.       @amount = 1
  175.       @gold = true
  176.     when 1 # items
  177.       @icon_index = $data_items[index].icon_index
  178.       ## 自定义文字时,请注意留空格,下同
  179.       @desc = '物品:   ' + $data_items[index].name + '×' + @amount.to_s  
  180.     when 2 # weapons
  181.       @icon_index = $data_weapons[index].icon_index
  182.       @desc = '武器:   ' + $data_weapons[index].name + '×' + @amount.to_s
  183.     when 3 # armors
  184.       @icon_index = $data_armors[index].icon_index
  185.       @desc = '防具:   ' + $data_armors[index].name + '×' + @amount.to_s
  186.     end
  187.   end
  188.   #--------------------------------------------------------------------------
  189.   # Start
  190.   #--------------------------------------------------------------------------
  191.   def start
  192.     create_background
  193.     @popup_window = Item_Popup_Window.new(@x, @y)
  194.   end
  195.   #--------------------------------------------------------------------------
  196.   # Terminate
  197.   #--------------------------------------------------------------------------
  198.   def terminate
  199.     @popup_window.dispose
  200.     @name_window.dispose
  201.     @menuback_sprite.dispose
  202.   end
  203.   #--------------------------------------------------------------------------
  204.   # Return Scene
  205.   #--------------------------------------------------------------------------
  206.   def return_scene
  207.     ##$game_switches[POPUP_SWITCH] = false ## 去掉还原限制
  208.     $scene = Scene_Map.new
  209.   end
  210.   #--------------------------------------------------------------------------
  211.   # Update
  212.   #--------------------------------------------------------------------------
  213.   def update
  214.     super
  215.     @popup_window.update
  216.     @menuback_sprite.update
  217.     do_popup
  218.   end
  219.   #--------------------------------------------------------------------------
  220.   # Update Basic
  221.   #--------------------------------------------------------------------------
  222.   def update_basic
  223.     Graphics.update              
  224.     Input.update                  
  225.     $game_map.update              
  226.   end
  227.   #--------------------------------------------------------------------------
  228.   # Wait
  229.   #--------------------------------------------------------------------------
  230.   def wait(duration)
  231.     for i in 0...duration
  232.       update_basic
  233.     end
  234.   end
  235.   #--------------------------------------------------------------------------
  236.   # Wait for "C"
  237.   #--------------------------------------------------------------------------
  238.   def wait_for_c
  239.     ## 自动关闭的计数器
  240.     @wait_count = WAIT_TIME
  241.     loop do
  242.       @wait_count -= 1
  243.       update_basic
  244.       ## 关闭判定
  245.       break if Input.trigger?(Input::C) or @wait_count <= 0
  246.     end
  247.   end
  248.   #--------------------------------------------------------------------------
  249.   # Create Background
  250.   #--------------------------------------------------------------------------
  251.   def create_background
  252.     @menuback_sprite = Sprite.new
  253.     @menuback_sprite.bitmap = $game_temp.background_bitmap
  254.     @menuback_sprite.update
  255.   end
  256.   #--------------------------------------------------------------------------
  257.   # Show Name
  258.   #--------------------------------------------------------------------------
  259.   def show_name
  260.     ## 去掉坐标传递,新增 icon_index
  261.     @name_window = Name_Window.new(@icon_index, @desc, @gold)
  262.     wait_for_c
  263.     Sound.play_cancel
  264.   end
  265.   #--------------------------------------------------------------------------
  266.   # Do Pop-Up
  267.   #--------------------------------------------------------------------------
  268.   def do_popup
  269.     for i in 1..@amount
  270.       Audio.se_play('Audio/SE/' + POPUP_SOUND, POPUP_SOUND_VOLUME, POPUP_SOUND_PITCH)
  271.       for i in 0..4
  272.         @popup_window.pop_up(@icon_index, @x - 26, @y - (i * 4) - 48)
  273.         @popup_window.update
  274.         wait(2)
  275.       end
  276.       wait(5) if i != @amount
  277.     end
  278.     wait(5)
  279.     show_name
  280.     return_scene
  281.   end
  282. end
复制代码

——旧坑欢迎戳

Lv2.观梦者

永无止境的旅程

梦石
0
星屑
503
在线时间
1552 小时
注册时间
2012-6-19
帖子
1226

开拓者贵宾

3
发表于 2013-10-30 16:46:10 | 只看该作者
@yangjunyin2002
如果已经解决问题的话,点评一下楼上的。

点评

楼上那个貌似真的没改动过。  发表于 2013-10-30 19:58
[url=https://rpg.blue/thread-389697-1-1.html]https://rpg.blue/https://rpg.blue/data/attachment/forum/201602/26/220128cfbxxs47xth4xkz4.jpg[/url]
&lt;font size=&quot;5&quot;&gt;[color=Green][url=https://rpg.blue/forum.php?mod=viewthread&amp;tid=396208&amp;extra=page%3D1][color=DeepSkyBlue]全新配套ACT系统,每周末一大更新,尽请期待。[/color][/url][/color]
回复 支持 反对

使用道具 举报

Lv5.捕梦者 (版主)

梦石
20
星屑
1840
在线时间
6925 小时
注册时间
2012-12-14
帖子
11485

短篇十战斗者组别冠军开拓者贵宾短篇九勇士组亚军

2
发表于 2013-10-29 18:36:19 | 只看该作者
  1. #==============================================================================
  2. # 动态显示的宝箱 v1.1 (old name: Chest Item Pop-Up)
  3. #------------------------------------------------------------------------------
  4. # 作者  : OriginalWij
  5. #------------------------------------------------------------------------------
  6. # 版本信息:
  7. #
  8. # v1.0
  9. # - 初版
  10. # v1.1
  11. # - 添加提示窗体
  12. #------------------------------------------------------------------------------
  13. # 注意: ① 得失物品/金钱之前,请先打开指定开关
  14. #       ② 得失多个物品时,在多个物品之间插入一个wait(1),详见范例工程
  15. #------------------------------------------------------------------------------
  16. # 汉化版改动: ① 去掉开关自动还原功能
  17. #             ② 按中文习惯显示描述信息
  18. #             ③ 在描述信息中描绘图标
  19. #             ④ 窗体屏幕居中显示
  20. #             ⑤ 增加提示窗体自动关闭功能
  21. #==============================================================================
  22.   # "金钱" 图标序号
  23.   GOLD_ICON = 205
  24.   # 激活动态显示的开关序号,默认为1号开关
  25.   POPUP_SWITCH = 1
  26.   # 得失物品的声音设定
  27.   POPUP_SOUND = 'Chime2'
  28.   POPUP_SOUND_VOLUME = 100
  29.   POPUP_SOUND_PITCH = 150
  30.   
  31.   ## 提示窗体自动关闭的时间(以帧计算)
  32.   WAIT_TIME = 100
  33. #==============================================================================
  34. # Game_Interpreter
  35. #==============================================================================
  36. class Game_Interpreter
  37.   #--------------------------------------------------------------------------
  38.   # Get X
  39.   #--------------------------------------------------------------------------
  40.   def get_x
  41.     events = $game_map.events
  42.     x_coord = events[@event_id]
  43.     return x_coord.screen_x
  44.   end
  45.   #--------------------------------------------------------------------------
  46.   # Get Y
  47.   #--------------------------------------------------------------------------
  48.   def get_y
  49.     events = $game_map.events
  50.     y_coord = events[@event_id]
  51.     return y_coord.screen_y
  52.   end
  53.   #--------------------------------------------------------------------------
  54.   # Change Gold
  55.   #--------------------------------------------------------------------------
  56.   def command_125
  57.     value = operate_value(@params[0], @params[1], @params[2])
  58.     $game_party.gain_gold(value)
  59.     x_value = get_x
  60.     y_value = get_y
  61.     $scene = Chest_Popup.new(x_value, y_value, 0, value, 1) if $game_switches[POPUP_SWITCH]
  62.     return true
  63.   end
  64.   #--------------------------------------------------------------------------
  65.   # Change Items
  66.   #--------------------------------------------------------------------------
  67.   def command_126
  68.     value = operate_value(@params[1], @params[2], @params[3])
  69.     $game_party.gain_item($data_items[@params[0]], value)
  70.     $game_map.need_refresh = true
  71.     x_value = get_x
  72.     y_value = get_y
  73.     $scene = Chest_Popup.new(x_value, y_value, 1, value, @params[0]) if $game_switches[POPUP_SWITCH]
  74.     return true
  75.   end
  76.   #--------------------------------------------------------------------------
  77.   # Change Weapons
  78.   #--------------------------------------------------------------------------
  79.   def command_127
  80.     value = operate_value(@params[1], @params[2], @params[3])
  81.     $game_party.gain_item($data_weapons[@params[0]], value, @params[4])
  82.     x_value = get_x
  83.     y_value = get_y
  84.     $scene = Chest_Popup.new(x_value, y_value, 2, value, @params[0]) if $game_switches[POPUP_SWITCH]
  85.     return true
  86.   end
  87.   #--------------------------------------------------------------------------
  88.   # Change Armor
  89.   #--------------------------------------------------------------------------
  90.   def command_128
  91.     value = operate_value(@params[1], @params[2], @params[3])
  92.     $game_party.gain_item($data_armors[@params[0]], value, @params[4])
  93.     x_value = get_x
  94.     y_value = get_y
  95.     $scene = Chest_Popup.new(x_value, y_value, 3, value, @params[0]) if $game_switches[POPUP_SWITCH]
  96.     return true
  97.   end
  98. end

  99. #==============================================================================
  100. # Item Popup Window
  101. #==============================================================================
  102. class Item_Popup_Window < Window_Base
  103.   #--------------------------------------------------------------------------
  104.   # Initialize
  105.   #--------------------------------------------------------------------------
  106.   def initialize(x, y)
  107.     super(0, 0, 544, 416)
  108.     self.opacity = 0
  109.     @x = x - 26
  110.     @y = y - 56
  111.   end
  112.   #--------------------------------------------------------------------------
  113.   # Pop-Up
  114.   #--------------------------------------------------------------------------
  115.   def pop_up(icon_index, x, y)
  116.     self.contents.clear
  117.     draw_icon(icon_index, x, y, true)
  118.   end
  119. end

  120. #==============================================================================
  121. # Name window
  122. #==============================================================================
  123. class Name_Window < Window_Base
  124.   #--------------------------------------------------------------------------
  125.   # Initialize ## 去掉坐标传递,新增 icon_index
  126.   #--------------------------------------------------------------------------
  127.   def initialize(icon_index, desc, gold = false)
  128.     ## 此位图缓存应该不需要重载
  129.     width = Cache.system("Window").text_size(desc).width + 32
  130.     width += 24 if gold
  131.     ## 屏幕居中
  132.     x = (Graphics.width - width)/2
  133.     y = (Graphics.height - WLH-32)/2
  134.    
  135.     super(x, y, width, WLH + 32)
  136.     self.opacity = 0
  137.     if gold
  138.       
  139.     #  self.contents.draw_text(0, 0, width-24, WLH, desc)
  140.     #  draw_icon(icon_index, width - 24-32, 0, true)
  141.     else
  142.    #   draw_icon(icon_index, 56, 0, true)
  143.    #   self.contents.draw_text(0, 0, width, WLH, desc)
  144.     end
  145.   end
  146. end

  147. #==============================================================================
  148. # Scene_Base
  149. #==============================================================================
  150. class Scene_Base
  151.   #--------------------------------------------------------------------------
  152.   # Create Snapshot for Using as Background of Another Screen
  153.   #--------------------------------------------------------------------------
  154.   def snapshot_for_background
  155.     $game_temp.background_bitmap.dispose
  156.     $game_temp.background_bitmap = Graphics.snap_to_bitmap
  157.     $game_temp.background_bitmap.blur if !$game_switches[POPUP_SWITCH]
  158.   end
  159. end

  160. #==============================================================================
  161. # Chest_Popup
  162. #==============================================================================
  163. class Chest_Popup < Scene_Base
  164.   #--------------------------------------------------------------------------
  165.   # Initialize
  166.   #--------------------------------------------------------------------------
  167.   def initialize(x, y, type, amount, index)
  168.     @x = x
  169.     @y = y
  170.     @amount = amount
  171.     [url=home.php?mod=space&uid=236945]@gold[/url] = false
  172.     case type
  173.     ## 改写成中文习惯
  174.     when 0 # gold
  175.       @icon_index = GOLD_ICON
  176.       @desc = '金钱: ' + @amount.to_s
  177.       @amount = 1
  178.       @gold = true
  179.     when 1 # items
  180.       @icon_index = $data_items[index].icon_index
  181.       ## 自定义文字时,请注意留空格,下同
  182.       @desc = '物品:   ' + $data_items[index].name + '×' + @amount.to_s  
  183.     when 2 # weapons
  184.       @icon_index = $data_weapons[index].icon_index
  185.       @desc = '武器:   ' + $data_weapons[index].name + '×' + @amount.to_s
  186.     when 3 # armors
  187.       @icon_index = $data_armors[index].icon_index
  188.       @desc = '防具:   ' + $data_armors[index].name + '×' + @amount.to_s
  189.     end
  190.   end
  191.   #--------------------------------------------------------------------------
  192.   # Start
  193.   #--------------------------------------------------------------------------
  194.   def start
  195.     create_background
  196.     @popup_window = Item_Popup_Window.new(@x, @y)
  197.   end
  198.   #--------------------------------------------------------------------------
  199.   # Terminate
  200.   #--------------------------------------------------------------------------
  201.   def terminate
  202.     @popup_window.dispose
  203.     @name_window.dispose
  204.     @menuback_sprite.dispose
  205.   end
  206.   #--------------------------------------------------------------------------
  207.   # Return Scene
  208.   #--------------------------------------------------------------------------
  209.   def return_scene
  210.     ##$game_switches[POPUP_SWITCH] = false ## 去掉还原限制
  211.     $scene = Scene_Map.new
  212.   end
  213.   #--------------------------------------------------------------------------
  214.   # Update
  215.   #--------------------------------------------------------------------------
  216.   def update
  217.     super
  218.     @popup_window.update
  219.     @menuback_sprite.update
  220.     do_popup
  221.   end
  222.   #--------------------------------------------------------------------------
  223.   # Update Basic
  224.   #--------------------------------------------------------------------------
  225.   def update_basic
  226.     Graphics.update              
  227.     Input.update                  
  228.     $game_map.update              
  229.   end
  230.   #--------------------------------------------------------------------------
  231.   # Wait
  232.   #--------------------------------------------------------------------------
  233.   def wait(duration)
  234.     for i in 0...duration
  235.       update_basic
  236.     end
  237.   end
  238.   #--------------------------------------------------------------------------
  239.   # Wait for "C"
  240.   #--------------------------------------------------------------------------
  241.   def wait_for_c
  242.     ## 自动关闭的计数器
  243.     @wait_count = WAIT_TIME
  244.     loop do
  245.       @wait_count -= 1
  246.       update_basic
  247.       ## 关闭判定
  248.       break if Input.trigger?(Input::C) or @wait_count <= 0
  249.     end
  250.   end
  251.   #--------------------------------------------------------------------------
  252.   # Create Background
  253.   #--------------------------------------------------------------------------
  254.   def create_background
  255.     @menuback_sprite = Sprite.new
  256.     @menuback_sprite.bitmap = $game_temp.background_bitmap
  257.     @menuback_sprite.update
  258.   end
  259.   #--------------------------------------------------------------------------
  260.   # Show Name
  261.   #--------------------------------------------------------------------------
  262.   def show_name
  263.     ## 去掉坐标传递,新增 icon_index
  264.     @name_window = Name_Window.new(@icon_index, @desc, @gold)
  265.     wait_for_c
  266.     Sound.play_cancel
  267.   end
  268.   #--------------------------------------------------------------------------
  269.   # Do Pop-Up
  270.   #--------------------------------------------------------------------------
  271.   def do_popup
  272.     for i in 1..@amount
  273.       Audio.se_play('Audio/SE/' + POPUP_SOUND, POPUP_SOUND_VOLUME, POPUP_SOUND_PITCH)
  274.       for i in 0..4
  275.         @popup_window.pop_up(@icon_index, @x - 26, @y - (i * 4) - 48)
  276.         @popup_window.update
  277.         wait(2)
  278.       end
  279.       wait(5) if i != @amount
  280.     end
  281.     wait(5)
  282.     show_name
  283.     return_scene
  284.   end
  285. end
复制代码
我什么都没有干

点评

↓ 纯符号注意哦  发表于 2013-10-29 19:46
。。  发表于 2013-10-29 19:43

评分

参与人数 1星屑 +150 收起 理由
铃仙·优昙华院·因幡 + 150 认可答案

查看全部评分

大家好,这里是晨露的说。请多多指教。
刚入门RM软件制作,请大家多多帮助我哦。
落雪君的欢乐像素教程,欢迎查阅。

回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-9-21 14:36

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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