赞 | 0 |
VIP | 0 |
好人卡 | 3 |
积分 | 2 |
经验 | 14925 |
最后登录 | 2021-3-30 |
在线时间 | 44 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 155
- 在线时间
- 44 小时
- 注册时间
- 2011-9-2
- 帖子
- 33
|
本帖最后由 幻耶1 于 2011-10-17 13:47 编辑
Game_Party下面搜索检查连续伤害,然后添加:
#--------------------------------------------------------------------------
# ● 检查连续伤害 (地图用)
#--------------------------------------------------------------------------
def check_map_slip_damage
for actor in @actors
if actor.sp > 0 and actor.state?(17)
actor.sp -= [actor.maxsp / 100, 1].max
if actor.sp <= 0
actor.sp = 0
end
$game_screen.start_flash(Color.new(255,0,0,128), 4)
end
end
。。。。。。。��� |
|