| 赞 | 0 |
| VIP | 22 |
| 好人卡 | 0 |
| 积分 | 1 |
| 经验 | 467710 |
| 最后登录 | 2018-9-22 |
| 在线时间 | 17 小时 |
Lv1.梦旅人 邪恶小龙包
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 17 小时
- 注册时间
- 2006-5-22
- 帖子
- 7006
  
|
在Window_MenuStatus New!脚本中,有一段——
self.contents.font.color = system_color
self.contents.draw_text(x - 30, y + 17 + 17, 32, 32, $data_system.words.hp)
self.contents.font.color = actor.hp == 0 ? knockout_color :
actor.hp <= actor.maxhp / 4 ? crisis_color : normal_color
self.contents.draw_text(x - 6, y + 17 + 17, 32, 32, actor.hp.to_s, 2)
self.contents.font.color = normal_color
self.contents.draw_text(x - 26 + 48, y + 17 + 17, 12, 32, "/", 1)
self.contents.draw_text(x - 24 + 56, y + 17 + 17, 32, 32, actor.maxhp.to_s)
self.contents.font.color = system_color
self.contents.draw_text(x - 30, y + 34 +17, 32, 32, $data_system.words.sp)
self.contents.font.color = actor.sp == 0 ? knockout_color :
actor.sp <= actor.maxsp / 4 ? crisis_color : normal_color
self.contents.draw_text(x - 6, y + 34 + 17, 32, 32, actor.sp.to_s, 2)
self.contents.font.color = normal_color
self.contents.draw_text(x - 26 + 48, y + 34 + 17, 12, 32, "/", 1)
self.contents.draw_text(x - 24 + 56, y + 34 + 17, 32, 32, actor.maxsp.to_s)
彩色字的从上到下分别是:“生命”、HP、“/”、最大HP、“魔法”、SP、“/”、最大SP
自己把里面的坐标修改下就好…… 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|