赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 0 |
经验 | 0 |
最后登录 | 2012-2-5 |
在线时间 | 10 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 275
- 在线时间
- 10 小时
- 注册时间
- 2011-8-29
- 帖子
- 2
|
本帖最后由 xuyi12130 于 2011-9-3 06:40 编辑
最近迷上RMXP 自己也想 搞搞娱乐 但是到半途遇到了 困难 那位大虾帮忙额~~
这里 人物怎么显示2个? 还有 攻击的 时候 不会对准怪物 而是到屏幕的 又上角 汗~~~~~
这个 怎么 弄#24
还有 怎么设置45°战斗脚本 下了一个 加了进去 但是说
# ● HP描画
#--------------------------------------------------------------------------
def draw_actor_hp_meter(actor, x, y, width = 156, type = 0)
if type == 1 and actor.hp == 0
return
end
self.contents.font.color = system_color
self.contents.fill_rect(x-1, y+27, width+2,6, Color.new(0, 0, 0, 25))
w = width * actor.hp / actor.maxhp
self.contents.fill_rect(x, y+28, w,1, Color.new(255, 96, 96, 255))
self.contents.fill_rect(x, y+29, w,1, Color.new(255, 0, 0, 255))
self.contents.fill_rect(x, y+30, w,1, Color.new(128, 0, 0, 255))
self.contents.fill_rect(x, y+31, w,1, Color.new(0, 0, 0, 255))
end
这里 w = width * actor.hp / actor.maxhp
这里出现了问题 汗 本人对脚本 一窍不通 真是头疼~~~~ |
|