Project1

标题: 能否去掉游戏步数? [打印本页]

作者: 黑白旋律    时间: 2010-12-18 17:06
标题: 能否去掉游戏步数?
然后游戏时间和金钱在下面
我需要多几个选项。 。
作者: 忧雪の伤    时间: 2010-12-18 17:12
本帖最后由 忧雪の伤 于 2010-12-18 17:13 编辑

刚好我自己改的脚本用得上
  1. #==============================================================================

  2. # ☆ 忧雪の伤制作,转载时请保留。

  3. #==============================================================================
  4. #==============================================================================
  5. # ■ Window_Steps
  6. #------------------------------------------------------------------------------
  7. #  菜单画面显示步数的窗口。
  8. #==============================================================================

  9. class Window_Steps < Window_Base
  10.   #--------------------------------------------------------------------------
  11.   # ● 初始化对像
  12.   #--------------------------------------------------------------------------
  13.   def initialize
  14.     super(0, 0, 160, 96)
  15.     self.contents = Bitmap.new(width - 32, height - 32)
  16.     refresh
  17.   end
  18.   #--------------------------------------------------------------------------
  19.   # ● 刷新
  20.   #--------------------------------------------------------------------------
  21.   def refresh
  22.     self.contents.clear
  23.     self.contents.font.color = system_color
  24.     # 忧雪の伤
  25.     # 改变一下可以做到如声望、剧情完成度等值的显示
  26.     # 以下改为声望
  27.     self.contents.draw_text(4, 0, 120, 32, "声望")
  28.     self.contents.font.color = normal_color
  29.     # 忧雪の伤
  30.     # $game_variables[i] 这一段脚本即为这里所显示的内容
  31.     # 以下为显示1号变量的值,1可以随便修改
  32.     # 同样的方法也可以运用到其他脚本中去
  33.     i = 1
  34.     self.contents.draw_text(4, 32, 120, 32, $game_variables[i].to_s, 2)
  35.   end
  36. end
复制代码

作者: Wind2010    时间: 2010-12-18 19:48
在Scene_Menu中找到一切有关step的东西,全部删掉……




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