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

Project1

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

[已经解决] 有没人愿意帮我修改一脚本

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
28 小时
注册时间
2008-10-4
帖子
193
跳转到指定楼层
1
发表于 2010-7-28 20:03:35 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
本帖最后由 痒死我了 于 2010-7-29 20:22 编辑

这个是云版的得失物品提示

问题是提示时背景涂成了白色

因为我不懂改脚本F1中的学习也还没精通,
所以我以很低的姿态和诚挚的态度请大神们帮我修改一下:

将背景的白色去除。

谢谢了!!!
  1. class Game_Interpreter

  2. UnShowSwitch = 5 #禁止显示提示开关

  3. GainSe = "Audio/SE/Recovery.ogg"

  4. LoseSe = "Audio/SE/Raise2.ogg"



  5.   #--------------------------------------------------------------------------

  6.   # ● 增减金钱

  7.   #--------------------------------------------------------------------------

  8.   def command_125

  9.     value = operate_value(@params[0], @params[1], @params[2])

  10.     $game_party.gain_gold(value)

  11.     show_window(0,value) unless $game_switches[UnShowSwitch]

  12.     return true

  13.   end

  14.   #--------------------------------------------------------------------------

  15.   # ● 增减物品

  16.   #--------------------------------------------------------------------------

  17.   def command_126

  18.     value = operate_value(@params[1], @params[2], @params[3])

  19.     $game_party.gain_item($data_items[@params[0]], value)

  20.     $game_map.need_refresh = true

  21.     show_window(1,value,@params[0]) unless $game_switches[UnShowSwitch]

  22.     return true

  23.   end

  24.   #--------------------------------------------------------------------------

  25.   # ● 增减武器

  26.   #--------------------------------------------------------------------------

  27.   def command_127

  28.     value = operate_value(@params[1], @params[2], @params[3])

  29.     $game_party.gain_item($data_weapons[@params[0]], value, @params[4])

  30.     show_window(2,value,@params[0]) unless $game_switches[UnShowSwitch]

  31.     return true

  32.   end

  33.   #--------------------------------------------------------------------------

  34.   # ● 增减防具

  35.   #--------------------------------------------------------------------------

  36.   def command_128

  37.     value = operate_value(@params[1], @params[2], @params[3])

  38.     $game_party.gain_item($data_armors[@params[0]], value, @params[4])

  39.     show_window(3,value,@params[0]) unless $game_switches[UnShowSwitch]

  40.     return true

  41.   end



  42.   def show_window(type,value,id = 0)  

  43.     if type == 0

  44.       item = "gold"

  45.     else #物品,武器,防具

  46.       if type == 1

  47.       item = $data_items[id]

  48.       elsif type == 2

  49.       item = $data_weapons[id]

  50.       else

  51.       item = $data_armors[id]

  52.       end

  53.     end      

  54.       width = 150 + (type == 0 ? value.to_s.size * 7 - 16 : item.name.size * 7)

  55.       w = Window_Base.new((640-width)/2 - 30 ,208,width,64)

  56.       w.windowskin = Cache.system("Window2")

  57.       w.contents = Bitmap.new(w.width - 32, w.height - 32)

  58.       w.contents.font.color = w.text_color(1)

  59.       w.contents.fill_rect(w.contents.rect,w.text_color(0))

  60.       w.opacity = w.contents_opacity =0   

  61.       for i in 0..10

  62.         w.opacity += 26

  63.         w.contents_opacity += 26

  64.         w.x += 3

  65.         Graphics.update

  66.       end      

  67.       if value >= 0

  68.         w.contents.draw_text(0,4,48,24,"得到")   

  69.         Audio.se_play(GainSe)

  70.       else

  71.         w.contents.draw_text(0,4,48,24,"失去")   

  72.         Audio.se_play(LoseSe)

  73.       end

  74.         if type != 0

  75.         w.draw_item_name_c(item,50, 4 ,type + 23)

  76.         w.opacity = w.back_opacity = 255

  77.         w.contents.font.color = w.text_color(14)

  78.         w.contents.draw_text(width - 72 , 4, 40, 24, "× " + value.abs.to_s ,2)

  79.         else  

  80.         bitmap = Cache.system("gold")

  81.         w.contents.blt(50, 4 ,bitmap , bitmap.rect)

  82.         w.contents.font.color = w.text_color(14)  

  83.         w.contents.draw_text(width - 112 , 4, 72, 24, " " + value.abs.to_s ,2)

  84.         end

  85.       for i in 0..30

  86.         Graphics.update

  87.       end

  88.       for i in 0..20

  89.         w.opacity -= 13

  90.         w.contents_opacity -= 13

  91.         w.x += 2

  92.         Graphics.update

  93.       end

  94.       w.dispose

  95.   end



  96. end





  97. class Window_Base

  98.   def draw_item_name_c(item, x, y , color)

  99.     if item != nil

  100.       draw_icon(item.icon_index, x, y, true)

  101.       self.contents.font.color = self.text_color(color)

  102.       self.contents.draw_text(x + 24, y, 172, WLH, item.name)

  103.     end

  104.   end

  105. end
复制代码

Lv1.梦旅人

梦石
0
星屑
50
在线时间
416 小时
注册时间
2006-10-21
帖子
1245
2
发表于 2010-7-28 20:17:46 | 只看该作者
这个如何
  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 = 10
  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.     @gold = 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
复制代码

点评

好像光得失物品用不了,只能够在打开宝贝箱子的时候用  发表于 2010-7-28 20:36
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-1-12 21:58

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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