赞 | 0 |
VIP | 4 |
好人卡 | 1 |
积分 | 1 |
经验 | 3388 |
最后登录 | 2020-5-20 |
在线时间 | 153 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 110
- 在线时间
- 153 小时
- 注册时间
- 2008-5-25
- 帖子
- 585
|
if $game_variables[100] = 2
图片变量名字1 = @actor.id.to_s + "_b"(角色ID号加_b)
bitmap=Bitmap.new("Graphics/pictures/#{图片变量名字1}")
src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
self.contents.blt(76, 180, bitmap, src_rect)
else $game_variables[100] != 2
图片变量名字2 = @actor.id.to_s + "_b"(角色ID号加_b)
bitmap=Bitmap.new("Graphics/pictures/#{图片变量名字2}")
src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
self.contents.blt(76, 180, bitmap, src_rect)
end
将这些脚本原封不动的插入你的脚本里试试?
|
|