赞 | 45 |
VIP | 0 |
好人卡 | 0 |
积分 | 146 |
经验 | 0 |
最后登录 | 2024-11-10 |
在线时间 | 2191 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 14571
- 在线时间
- 2191 小时
- 注册时间
- 2019-1-24
- 帖子
- 1123
|
发表于 2019-6-8 22:39:17
|
显示全部楼层
Window_Gold类里面改下就行了
def refresh
self.contents.clear
cx = contents.text_size($data_system.words.gold).width
if $game_party.gold >= 1000000
self.contents.font.color = Color.new(255, 0, 0, 255)
elsif $game_party.gold >= 100000 and $game_party.gold < 1000000
self.contents.font.color = Color.new(0, 255, 0, 255)
else
self.contents.font.color = normal_color
end
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)
end |
评分
-
查看全部评分
|