Project1

标题: 两个问题! [打印本页]

作者: mengniu2008    时间: 2009-1-13 06:21
提示: 作者被禁止或删除 内容自动屏蔽
作者: 暴风の龙    时间: 2009-1-13 06:28
……可以打开Window_Steps这个脚本,把内容替换成
  1. #==============================================================================
  2. # ■ Window_Steps
  3. #------------------------------------------------------------------------------
  4. #  菜单画面显示步数的窗口。
  5. #==============================================================================

  6. class Window_Steps < Window_Base
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对像
  9.   #--------------------------------------------------------------------------
  10.   def initialize
  11.     super(0, 0, 160, 96)
  12.     self.contents = Bitmap.new(width - 32, height - 32)
  13.     refresh
  14.   end
  15.   #--------------------------------------------------------------------------
  16.   # ● 刷新
  17.   #--------------------------------------------------------------------------
  18.   def refresh
  19.     self.contents.clear
  20.     self.contents.font.color = system_color
  21.     self.contents.draw_text(4, 0, 120, 32, "声望")
  22.     self.contents.font.color = normal_color
  23.     self.contents.draw_text(4, 32, 120, 32, $game_variables[1].to_s, 2)
  24.   end
  25. end
复制代码

然后用1号变量记录声望值就好

2、没见过

作者: 9244579    时间: 2009-1-13 06:29
change in Scene_Menu close the @step_window.make a new window
作者: 静·界    时间: 2009-1-13 19:19
提示: 作者被禁止或删除 内容自动屏蔽




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