赞 | 1 |
VIP | 20 |
好人卡 | 8 |
积分 | 4 |
经验 | 6181 |
最后登录 | 2022-8-5 |
在线时间 | 271 小时 |
Lv2.观梦者 神隐的主犯
- 梦石
- 0
- 星屑
- 378
- 在线时间
- 271 小时
- 注册时间
- 2008-2-22
- 帖子
- 7691

|
找到 Window_MenuStatus 里面的这个方法:
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- @item_max = $game_party.members.size
- for actor in $game_party.members
- draw_actor_face(actor, 2, actor.index * 96 + 2, 92)
- x = 104
- y = actor.index * 96 + WLH / 2
- draw_actor_name(actor, x, y)
- draw_actor_class(actor, x + 120, y)
- draw_actor_level(actor, x, y + WLH * 1)
- draw_actor_state(actor, x, y + WLH * 2)
- draw_actor_hp(actor, x + 120, y + WLH * 1)
- draw_actor_mp(actor, x + 120, y + WLH * 2)
- end
- end
复制代码
修改里面 X Y 后面的数字即可~~ 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|