Project1
标题:
怎样编写主角ID=1,HP=0死亡,游戏就结束?
[打印本页]
作者:
tanjun1970
时间:
2008-3-31 04:38
提示:
作者被禁止或删除 内容自动屏蔽
作者:
八云紫
时间:
2008-3-31 05:36
简单,找到Scene_Battle 第173行
改成:
#--------------------------------------------------------------------------
# ● 判断胜败 UUZ
#--------------------------------------------------------------------------
def judge_win_loss
if $game_temp.in_battle
if $game_party.all_dead?
process_defeat
return true
elsif $game_troop.all_dead?
process_victory
return true
elsif $game_actors[1].hp == 0
process_defeat
return true
else
return false
end
else
return true
end
end
复制代码
即可。 [LINE]1,#dddddd[/LINE]
系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1