Project1

标题: 怎样编写主角ID=1,HP=0死亡,游戏就结束? [打印本页]

作者: tanjun1970    时间: 2008-3-31 04:38
提示: 作者被禁止或删除 内容自动屏蔽
作者: 八云紫    时间: 2008-3-31 05:36
简单,找到Scene_Battle 第173行
改成:

  1.   #--------------------------------------------------------------------------
  2.   # ● 判断胜败  UUZ
  3.   #--------------------------------------------------------------------------
  4.   def judge_win_loss
  5.     if $game_temp.in_battle
  6.       if $game_party.all_dead?
  7.         process_defeat
  8.         return true
  9.       elsif $game_troop.all_dead?
  10.         process_victory
  11.         return true
  12.       elsif $game_actors[1].hp == 0
  13.         process_defeat
  14.         return true
  15.       else
  16.         return false
  17.       end
  18.     else
  19.       return true
  20.     end
  21.   end
复制代码


即可。 [LINE]1,#dddddd[/LINE]系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1