赞 | 0 |
VIP | 5 |
好人卡 | 14 |
积分 | 15 |
经验 | 110639 |
最后登录 | 2015-10-15 |
在线时间 | 1157 小时 |
Lv3.寻梦者 小柯的徒弟
- 梦石
- 0
- 星屑
- 1535
- 在线时间
- 1157 小时
- 注册时间
- 2008-5-24
- 帖子
- 3085
|
可以啊~~~~顺便还加了个字体大小哦~~~- class Game_Actor
- def return_next_exp_s
- s = @exp-@exp_list[@level]
- s = (@exp-@exp_list[@level])*100/(@exp_list[@level+1]-@exp_list[@level]) if s != 0
- s /= 1.00
- return "[EX]"+s.to_s+"%"
- end
- end
- class Window_BattleStatus
- X横坐标 = 60
- Y纵坐标 = 95
- C颜色 = Color.new(200,200,200,200)#——红色值、绿色值、蓝色值。透明的。
- S字大小 = 16
- alias old_refresh refresh
- def refresh
- self.contents.font.size = 22
- old_refresh
- self.contents.font.size = S字大小
- color = self.contents.font.color
- self.contents.font.color = C颜色
- for i in 0...$game_party.actors.size
- actor = $game_party.actors[i]
- actor_x = i * 160 + 4
- self.contents.draw_text(X横坐标+actor_x,Y纵坐标,150,32,actor.return_next_exp_s)
- end
- self.contents.font.color = color
- end
- end
复制代码 试试看~ |
|