赞 | 0 |
VIP | 44 |
好人卡 | 0 |
积分 | 1 |
经验 | 6016 |
最后登录 | 2015-11-12 |
在线时间 | 1 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1 小时
- 注册时间
- 2008-8-27
- 帖子
- 1581
|
把这个插在main前面
- #==============================================================================
- # ■ Window_Gold
- #------------------------------------------------------------------------------
- # 显示金钱的窗口。
- #==============================================================================
- class Window_Gold < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化窗口
- #--------------------------------------------------------------------------
- def initialize
- #===========================================
- # ★ 修改过的地方
- #===========================================
- super(0, 0, 160, 96)
- #===========================================
- # ★ 修改过的地方完
- #===========================================
- self.contents = Bitmap.new(width - 32, height - 32)
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- cx = contents.text_size($data_system.words.gold).width
- self.contents.font.color = normal_color
- self.contents.draw_text(4, 0, 120-cx-2, 32, $game_party.gold.to_s, 2)
- self.contents.font.color = system_color
- self.contents.draw_text(124-cx, 0, cx, 32, $data_system.words.gold, 2)
- #===========================================
- # ★ 修改过的地方
- #===========================================
- cx = contents.text_size("灵魄").width
- self.contents.font.color = normal_color
- self.contents.draw_text(4, 32, 120-cx-2, 32, $game_variables[44].to_s, 2)
- self.contents.font.color = system_color
- self.contents.draw_text(124-cx, 32, cx, 32, "灵魄" , 2)
- #===========================================
- # ★ 修改过的地方完
- #===========================================
- end
- end
复制代码
然后在Scene_Menu中,把第52行的416改成384,如果你不爽“灵魄”这个名字的话可以改改,“灵魄”等于44号变量,如果想改就改“$game_variables[44].to_s”里面的“44”换成其他数字,我说的很详细了 版主对此帖的认可:『正确解答,补上悬赏积分100分+1卡(=250分),感激你的热情解答...』,积分『+350』。 |
|