以下引用o∩_∩o于2007-12-24 10:09:00的发言:
脚本里搜索“生命”,“魔法”,会看到有x,y坐标的语句,修改就可以了。
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)
| 欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |