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

Project1

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

[已经过期] 怎么做空白……

[复制链接]

Lv1.梦旅人

梦石
0
星屑
75
在线时间
26 小时
注册时间
2009-11-27
帖子
156
跳转到指定楼层
1
发表于 2010-8-7 12:58:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
有些素材被当成病毒给删了,有没有:
如果找不到素材就用空白素材代替的脚本

急……………………

评分

参与人数 1星屑 -2 收起 理由
六祈 -2 标题要描述清楚

查看全部评分

Lv3.寻梦者

梦石
1
星屑
916
在线时间
101 小时
注册时间
2006-3-27
帖子
1081
2
发表于 2010-8-7 13:04:22 | 只看该作者
MS有个跳过错误的脚本,但是……现在的主站MS还没修复,搞半天没找到
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
408
在线时间
972 小时
注册时间
2007-12-31
帖子
2137
3
发表于 2010-8-7 13:12:20 | 只看该作者
容错脚本第2版
  1. #==============================================================================
  2. # ■ 容错脚本第2版                                              BY 亿万星辰
  3. #------------------------------------------------------------------------------
  4. #  道理很简单,缺什么就不用什么……全缺的话会比较恐怖,比如默认的范例就是……
  5. #   不过这里要声明的一点,这个只针对素材的缺失,如果data文件夹下的数据缺失的话,
  6. #   这样再用容错似乎没什么意义……   (数据库都没了还容什么错……)
  7. #
  8. #   下一版本考虑增加一些替代用的素材。
  9. #
  10. #   默认范例为新建工程时生成的默认地图……只是RTP没选而已。
  11. #==============================================================================
  12. class Game_System
  13.   #--------------------------------------------------------------------------
  14.   # ● 演奏 BGM
  15.   #     bgm : 演奏的 BGM
  16.   #--------------------------------------------------------------------------
  17.   def bgm_play(bgm)
  18.     @playing_bgm = bgm
  19.     begin
  20.       if bgm != nil and bgm.name != ""
  21.         Audio.bgm_play("Audio/BGM/" + bgm.name, bgm.volume, bgm.pitch)
  22.       else
  23.         Audio.bgm_stop
  24.       end
  25.     rescue Errno::ENOENT
  26.       Audio.bgm_stop
  27.       unless $need_file.include?("Audio/BGM/#{bgm.name}")
  28.         $need_file.push("Audio/BGM/#{bgm.name}")
  29.         f = File.open("./log.txt","a")
  30.         f.write("Audio/BGM/#{bgm.name}" + "\n")
  31.         f.close
  32.       end
  33.     end
  34.     Graphics.frame_reset
  35.   end
  36.   #--------------------------------------------------------------------------
  37.   # ● 演奏 BGS
  38.   #     bgs : 演奏的 BGS
  39.   #--------------------------------------------------------------------------
  40.   def bgs_play(bgs)
  41.     @playing_bgs = bgs
  42.     begin
  43.       if bgs != nil and bgs.name != ""
  44.         Audio.bgs_play("Audio/BGS/" + bgs.name, bgs.volume, bgs.pitch)
  45.       else
  46.         Audio.bgs_stop
  47.       end
  48.     rescue Errno::ENOENT
  49.       Audio.bgs_stop
  50.       unless $need_file.include?("Audio/BGM/#{bgs.name}")
  51.         $need_file.push("Audio/BGM/#{bgs.name}")
  52.         f = File.open("./log.txt","a")
  53.         f.write("Audio/BGM/#{bgs.name}" + "\n")
  54.         f.close
  55.       end
  56.     end
  57.     Graphics.frame_reset
  58.   end
  59.   #--------------------------------------------------------------------------
  60.   # ● ME 的演奏
  61.   #     me : 演奏的 ME
  62.   #--------------------------------------------------------------------------
  63.   def me_play(me)
  64.     begin
  65.       if me != nil and me.name != ""
  66.         Audio.me_play("Audio/ME/" + me.name, me.volume, me.pitch)
  67.       else
  68.         Audio.me_stop
  69.       end
  70.     rescue Errno::ENOENT
  71.       Audio.me_stop
  72.       unless $need_file.include?("Audio/BGM/#{me.name}")
  73.         $need_file.push("Audio/BGM/#{me.name}")
  74.         f = File.open("./log.txt","a")
  75.         f.write("Audio/BGM/#{me.name}" + "\n")
  76.         f.close
  77.       end
  78.     end
  79.     Graphics.frame_reset
  80.   end
  81.   #--------------------------------------------------------------------------
  82.   # ● SE 的演奏
  83.   #     se : 演奏的 SE
  84.   #--------------------------------------------------------------------------
  85.   def se_play(se)
  86.     begin
  87.       if se != nil and se.name != ""
  88.         Audio.se_play("Audio/SE/" + se.name, se.volume, se.pitch)
  89.       end
  90.     rescue Errno::ENOENT
  91.       Audio.se_stop
  92.       unless $need_file.include?("Audio/BGM/#{se.name}")
  93.         $need_file.push("Audio/BGM/#{se.name}")
  94.         f = File.open("./log.txt","a")
  95.         f.write("Audio/BGM/#{se.name}" + "\n")
  96.         f.close
  97.       end
  98.     end
  99.   end
  100. end

  101. module RPG
  102.   module Cache
  103.     def self.load_bitmap(folder_name, filename, hue = 0)
  104.       begin
  105.         path = folder_name + filename
  106.         if not @cache.include?(path) or @cache[path].disposed?
  107.           if filename != ""
  108.             @cache[path] = Bitmap.new(path)
  109.           else
  110.             @cache[path] = Bitmap.new(32, 32)
  111.           end
  112.         end
  113.         if hue == 0
  114.           @cache[path]
  115.         else
  116.           key = [path, hue]
  117.           if not @cache.include?(key) or @cache[key].disposed?
  118.             @cache[key] = @cache[path].clone
  119.             @cache[key].hue_change(hue)
  120.           end
  121.           @cache[key]
  122.         end
  123.       rescue Errno::ENOENT
  124.         unless $need_file.include?("#{folder_name}#{filename}")
  125.           $need_file.push("#{folder_name}#{filename}")
  126.           f = File.open("./log.txt","a")
  127.           f.write("#{folder_name}#{filename}" + "\n")
  128.           f.close
  129.         end
  130.         self.load_bitmap(folder_name, "", hue)
  131.       end
  132.     end
  133.   end
  134. end
复制代码
容错脚本第3版
  1. #==============================================================================
  2. # ■ 容错脚本第3版                                              BY 轮回者
  3. #------------------------------------------------------------------------------
  4. #  本脚本基于星大叔的容错脚本第2版,区别只是“下手”的地方不同而已。
  5. #  说明请参看星大叔的容错脚本第2版。
  6. #==============================================================================

  7. $need_file_bitmap = []
  8. if FileTest.exist?("log_bitmap.txt")
  9. f = File.open("./log_bitmap.txt","r")
  10. $need_file_bitmap = f.read.split(/\n/)
  11. f.close
  12. end

  13. module Graphics
  14. @transition = method("transition")
  15. def self.transition(*arg)
  16.    begin
  17.      @transition.call(*arg)
  18.    rescue Errno::ENOENT
  19.      ary=[*arg]
  20.      filename=ary[1]
  21.      unless $need_file_bitmap.include?(filename)
  22.        $need_file_bitmap.push(filename)
  23.        f = File.open("./log_bitmap.txt","a")
  24.        f.write(filename + "\n")
  25.        f.close
  26.      end
  27.      @transition.call(ary[0])
  28.    end
  29. end
  30. end

  31. class Bitmap < Object
  32. alias ini initialize
  33. def initialize(*arg)
  34.    begin
  35.      ini(*arg)
  36.    rescue Errno::ENOENT
  37.      filename=[*arg][0]
  38.      unless $need_file_bitmap.include?(filename)
  39.        $need_file_bitmap.push(filename)
  40.        f = File.open("./log_bitmap.txt","a")
  41.        f.write(filename + "\n")
  42.        f.close
  43.      end
  44.      ini(32,32)
  45.    end
  46. end
  47. end

  48. $need_file_audio = []
  49. if FileTest.exist?("log_audio.txt")
  50. f = File.open("./log_audio.txt","r")
  51. $need_file_audio = f.read.split(/\n/)
  52. f.close
  53. end

  54. module Audio
  55. @me_play = method("me_play")
  56. def self.me_play(*arg)
  57.    begin
  58.      @me_play.call(*arg)
  59.    rescue Errno::ENOENT
  60.      filename=[*arg][0]
  61.      unless $need_file_audio.include?(filename)
  62.        $need_file_audio.push(filename)
  63.        f = File.open("./log_audio.txt","a")
  64.        f.write(filename + "\n")
  65.        f.close
  66.      end
  67.      me_stop
  68.    end
  69. end
  70. @bgm_play = method("bgm_play")
  71. def self.bgm_play(*arg)
  72.    begin
  73.      @bgm_play.call(*arg)
  74.    rescue Errno::ENOENT
  75.      filename=[*arg][0]
  76.      unless $need_file_audio.include?(filename)
  77.        $need_file_audio.push(filename)
  78.        f = File.open("./log_audio.txt","a")
  79.        f.write(filename + "\n")
  80.        f.close
  81.      end
  82.      bgm_stop
  83.    end
  84. end
  85. @se_play = method("se_play")
  86. def self.se_play(*arg)
  87.    begin
  88.      @se_play.call(*arg)
  89.    rescue Errno::ENOENT
  90.      filename=[*arg][0]
  91.      unless $need_file_audio.include?(filename)
  92.        $need_file_audio.push(filename)
  93.        f = File.open("./log_audio.txt","a")
  94.        f.write(filename + "\n")
  95.        f.close
  96.      end
  97.      se_stop
  98.    end
  99. end
  100. @bgs_play = method("bgs_play")
  101. def self.bgs_play(*arg)
  102.    begin
  103.      @bgs_play.call(*arg)
  104.    rescue Errno::ENOENT
  105.      filename=[*arg][0]
  106.      unless $need_file_audio.include?(filename)
  107.        $need_file_audio.push(filename)
  108.        f = File.open("./log_audio.txt","a")
  109.        f.write(filename + "\n")
  110.        f.close
  111.      end
  112.      bgs_stop
  113.    end
  114. end
  115. end
复制代码

评分

参与人数 1星屑 +100 收起 理由
六祈 + 100 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

Lv1.梦旅人

万物创造者

梦石
0
星屑
54
在线时间
352 小时
注册时间
2008-2-15
帖子
2432
4
发表于 2010-8-7 13:17:31 | 只看该作者
= =LS抢先了,当我没说

点评

HAPPY~~~~~HAPPY~~~~~能抢前辈的先~~~~~~~~~【~】中毒中……  发表于 2010-8-7 14:03
From mortal hope immortal power springs.
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
120
在线时间
92 小时
注册时间
2009-8-1
帖子
438
5
发表于 2010-8-7 13:27:09 | 只看该作者
如果只是极个别素材是病毒被删的话,就在相应文件夹下新建一个空白文件如txt文本文档,然后把该文件名与后缀名一同改为原文件名。随口说说咯,呵呵~
哎呦,好像快要能发布一款游戏了,这次一定要低调!
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
38 小时
注册时间
2009-5-23
帖子
358
6
发表于 2010-8-7 15:43:10 | 只看该作者
如果是这样的话~\(≧▽≦)/~给你个第三版
  1. #==============================================================================
  2. # ■ 容错脚本第3版                                              BY 轮回者
  3. #------------------------------------------------------------------------------
  4. #  本脚本基于星大叔的容错脚本第2版,区别只是“下手”的地方不同而已。
  5. #  说明请参看星大叔的容错脚本第2版。
  6. #==============================================================================

  7. $need_file_bitmap = []
  8. if FileTest.exist?("log_bitmap.txt")
  9.   f = File.open("./log_bitmap.txt","r")
  10.   $need_file_bitmap = f.read.split(/\n/)
  11.   f.close
  12. end

  13. module Graphics
  14.   @transition = method("transition")
  15.   def self.transition(*arg)
  16.     begin
  17.       @transition.call(*arg)
  18.     rescue Errno::ENOENT
  19.       ary=[*arg]
  20.       filename=ary[1]
  21.       unless $need_file_bitmap.include?(filename)
  22.         $need_file_bitmap.push(filename)
  23.         f = File.open("./log_bitmap.txt","a")
  24.         f.write(filename + "\n")
  25.         f.close
  26.       end
  27.       @transition.call(ary[0])
  28.     end
  29.   end
  30. end

  31. class Bitmap < Object
  32.   alias ini initialize
  33.   def initialize(*arg)
  34.     begin
  35.       ini(*arg)
  36.     rescue Errno::ENOENT
  37.       filename=[*arg][0]
  38.       unless $need_file_bitmap.include?(filename)
  39.         $need_file_bitmap.push(filename)
  40.         f = File.open("./log_bitmap.txt","a")
  41.         f.write(filename + "\n")
  42.         f.close
  43.       end
  44.       ini(32,32)
  45.     end
  46.   end
  47. end

  48. $need_file_audio = []
  49. if FileTest.exist?("log_audio.txt")
  50.   f = File.open("./log_audio.txt","r")
  51.   $need_file_audio = f.read.split(/\n/)
  52.   f.close
  53. end

  54. module Audio
  55.   @me_play = method("me_play")
  56.   def self.me_play(*arg)
  57.     begin
  58.       @me_play.call(*arg)
  59.     rescue Errno::ENOENT
  60.       filename=[*arg][0]
  61.       unless $need_file_audio.include?(filename)
  62.         $need_file_audio.push(filename)
  63.         f = File.open("./log_audio.txt","a")
  64.         f.write(filename + "\n")
  65.         f.close
  66.       end
  67.       me_stop
  68.     end
  69.   end
  70.   @bgm_play = method("bgm_play")
  71.   def self.bgm_play(*arg)
  72.     begin
  73.       @bgm_play.call(*arg)
  74.     rescue Errno::ENOENT
  75.       filename=[*arg][0]
  76.       unless $need_file_audio.include?(filename)
  77.         $need_file_audio.push(filename)
  78.         f = File.open("./log_audio.txt","a")
  79.         f.write(filename + "\n")
  80.         f.close
  81.       end
  82.       bgm_stop
  83.     end
  84.   end
  85.   @se_play = method("se_play")
  86.   def self.se_play(*arg)
  87.     begin
  88.       @se_play.call(*arg)
  89.     rescue Errno::ENOENT
  90.       filename=[*arg][0]
  91.       unless $need_file_audio.include?(filename)
  92.         $need_file_audio.push(filename)
  93.         f = File.open("./log_audio.txt","a")
  94.         f.write(filename + "\n")
  95.         f.close
  96.       end
  97.       se_stop
  98.     end
  99.   end
  100.   @bgs_play = method("bgs_play")
  101.   def self.bgs_play(*arg)
  102.     begin
  103.       @bgs_play.call(*arg)
  104.     rescue Errno::ENOENT
  105.       filename=[*arg][0]
  106.       unless $need_file_audio.include?(filename)
  107.         $need_file_audio.push(filename)
  108.         f = File.open("./log_audio.txt","a")
  109.         f.write(filename + "\n")
  110.         f.close
  111.       end
  112.       bgs_stop
  113.     end
  114.   end
  115. end
复制代码
去吧Graphics删了吧~\(≧▽≦)/~

评分

参与人数 1星屑 +100 收起 理由
六祈 + 100 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-4-6 01:54

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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