Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Show all status names
#1
This is a locked, single-post thread from Creation Asylum. Archived here to prevent its loss.
No support is given. If you are the owner of the thread, please contact administration.


its simple, just change in Window_Base this:
Code:
def make_battler_state_text(battler, width, need_normal)
    # Selecionar comrpimento dos Colchetes
    brackets_width = self.contents.text_size("[]").width
    # Criar um string de Status para texto
    text = ""
    for i in battler.states
      if $data_states[i].rating >= 1
        if text == ""
          text = $data_states[i].name
        else
          new_text = text + "/" + $data_states[i].name
          text_width = self.contents.text_size(new_text).width
          if text_width > width - brackets_width
            break
          end
          text = new_text
        end
      end
    end
    # Caso esteja vazio o string de texto, tornar isto Normal
    if text == ""
      if need_normal
        text = "[Normal]"
      end
    else
      # Anexar Colchetes
      text = "[" + text + "]"
    end
    # Retornar string de texto
    return text
  end

to this:
Code:
    def make_battler_state_text(battler, width, need_normal)
    # Selecionar comrpimento dos Colchetes
    brackets_width = self.contents.text_size("[]").width
    # Criar um string de Status para texto
    text = ""
    textsize = 0
    for i in battler.states
      if $data_states[i].rating >= 1
        if  textsize < 1
          text += $data_states[i].name
          textsize += 1
        else
          text += "," + $data_states[i].name
          textsize += 1
        end
      end
    end
    # Caso esteja vazio o string de texto, tornar isto Normal
    if text == ""
      if need_normal
        text = "[Normal]"
      end
    else
      # Anexar Colchetes
      text = "[" + text + "]"
    end
    # Retornar string de texto
    return text
  end
and remember, use small names, one or two letters, or it will not show all (dont add 20 or more status too)
}


Possibly Related Threads…
Thread Author Replies Views Last Post
  Friend Death Status sandsand 0 2,904 10-10-2006, 01:00 PM
Last Post: sandsand
  Show a Message in any Scene Tsunokiette 1 2,956 08-17-2006, 01:15 PM
Last Post: GoldenShadow
  Show Question Sheol 0 2,199 07-23-2006, 01:00 PM
Last Post: Sheol
  Change Color of The diferent Status Script MASTERLOKI 0 2,267 07-18-2006, 01:00 PM
Last Post: MASTERLOKI
  Change Level/Exp/Status name ryujijitei 0 1,997 04-29-2006, 01:00 PM
Last Post: ryujijitei
  Show Map Name Sheol 0 2,131 04-02-2006, 01:00 PM
Last Post: Sheol
  Custom Menu Status jstreet 0 2,455 12-23-2005, 01:00 PM
Last Post: jstreet
  Status Color-Movement Derk-Jan 0 2,015 06-30-2005, 01:05 PM
Last Post: Derk-Jan
  Status change indication Derk-Jan 0 1,940 06-30-2005, 01:00 PM
Last Post: Derk-Jan



Users browsing this thread: