赞 | 0 |
VIP | 22 |
好人卡 | 0 |
积分 | 1 |
经验 | 467710 |
最后登录 | 2018-9-22 |
在线时间 | 17 小时 |
Lv1.梦旅人 邪恶小龙包
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 17 小时
- 注册时间
- 2006-5-22
- 帖子
- 7006
|
……可以打开Window_Steps这个脚本,把内容替换成
- #==============================================================================
- # ■ Window_Steps
- #------------------------------------------------------------------------------
- # 菜单画面显示步数的窗口。
- #==============================================================================
- class Window_Steps < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- super(0, 0, 160, 96)
- self.contents = Bitmap.new(width - 32, height - 32)
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- self.contents.font.color = system_color
- self.contents.draw_text(4, 0, 120, 32, "声望")
- self.contents.font.color = normal_color
- self.contents.draw_text(4, 32, 120, 32, $game_variables[1].to_s, 2)
- end
- end
复制代码
然后用1号变量记录声望值就好
2、没见过
|
|