Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Continue even when Loser doesnt work
#2
Looks to be a bug with the display that shows what battler's turn is next. And you'd think that making a check on not displaying the battler's name in the list if the battler itself was 'nil' would do the trick, but I found it wasn't hiding the dead hero, but the attacking enemy. Eeesh.

So instead, I borrowed a trick from the 'judge' method from the default battlesystem. Winking

Code:
return if $game_party.all_dead? or $game_party.actors.size == 0

Place this bit of code right before the 'self.content.clear' statement when the 'update_text_window' starts like so:
Code:
#--------------------------------------------------------------------------
  # * Update window text
  #--------------------------------------------------------------------------
  def update_text_window
    return if $game_party.all_dead? or $game_party.actors.size == 0
    self.contents.clear

And the window will not update when your party dies. This should negate your problem.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

}


Messages In This Thread
Continue even when Loser doesnt work - by Djigit - 10-12-2014, 02:12 PM
RE: Continue even when Loser doesnt work - by DerVVulfman - 10-12-2014, 08:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Tongue  Healing Spell doesn't work right in Menu? Bounty Hunter Lani 8 11,277 01-15-2015, 07:45 PM
Last Post: Bounty Hunter Lani
Question  RGSS stoped to work Chaos17 5 7,007 02-14-2013, 05:13 PM
Last Post: DerVVulfman



Users browsing this thread: