赞 | 38 |
VIP | 2420 |
好人卡 | 100 |
积分 | 33 |
经验 | 75384 |
最后登录 | 2024-7-7 |
在线时间 | 3619 小时 |
Lv3.寻梦者 (暗夜天使) 名侦探小柯
- 梦石
- 0
- 星屑
- 3299
- 在线时间
- 3619 小时
- 注册时间
- 2006-9-6
- 帖子
- 37400
|
以下引用逐月于2008-2-1 22:45:59的发言:
好啊,帮忙改一下,图片血槽脚本,帮忙改成VX用的。
<<_END_
☆图片SP、HP的描画 V1.5
by 逐月
_END_
#描画HP槽
def HP (actor,x,y)
@bitmap3 = Bitmap.new("Graphics/Pictures/血槽/底")
@src_rect3 = Rect.new(0,0,@bitmap3.width, @bitmap3.height)
self.contents.blt(x,y, @bitmap3, @src_rect3)
#HP显示
@bitmap3 = Bitmap.new("Graphics/Pictures/血槽/hp")
w3 = @bitmap3.width * actor.hp/actor.maxhp
@src_rect3 = Rect.new(0,0,w3, @bitmap3.height)
self.contents.blt(x+4,y+2, @bitmap3, @src_rect3)
end
#描画SP槽
def SP (actor,x,y)
@bitmap1 = Bitmap.new("Graphics/Pictures/血槽/底")
@src_rect1 = Rect.new(0,0,@bitmap1.width, @bitmap1.height)
self.contents.blt(x,y, @bitmap1, @src_rect1)
#SP显示
@bitmap1 = Bitmap.new("Graphics/Pictures/血槽/sp")
w1 = @bitmap1.width * actor.sp/actor.maxsp
@src_rect1 = Rect.new(0,0,w1, @bitmap1.height)
self.contents.blt(x+4,y+2, @bitmap1, @src_rect1)
end
#描画exp槽
def exp (actor,x,y)
@bitmap4 = Bitmap.new("Graphics/Pictures/血槽/底")
@src_rect4 = Rect.new(0,0,@bitmap4.width, @bitmap4.height)
self.contents.blt(x,y, @bitmap4, @src_rect4)
#exp显示
@bitmap4 = Bitmap.new("Graphics/Pictures/血槽/exp")
w4 = @bitmap4.width * actor.exp/actor.next_exp
@src_rect4 = Rect.new(0,0,w4, @bitmap4.height)
self.contents.blt(x+4,y+2, @bitmap4, @src_rect4)
end
给S大叔改不就好了~ |
|