RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RESOLVED] Changing 'Normal' Status

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 88
If a character has no status ailments, it says [Normal] in the menu. Is there anyway to change it to [Healthy] or something similar?
« Last Edit: May 12, 2007, 07:36:05 AM by Zeriab »

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Check the system tab, if it's anywhere it would be there.

*
A Random Custom Title
Rep:
Level 96
wah
If it's not, you can go through the scripts and look up "Normal" :P

*
Crew Slut
Rep:
Level 93
You'll love it!
For taking a crack at the RMRK Wiki
I think I found it some where when I was tweaking stuff in the scripts.

EDIT:

Found it:

Window_Base Line 175

Quote
  #--------------------------------------------------------------------------
  # * Make State Text String for Drawing
  #     actor       : actor
  #     width       : draw spot width
  #     need_normal : Whether or not [normal] is needed (true / false)
  #--------------------------------------------------------------------------
  def make_battler_state_text(battler, width, need_normal)
    # Get width of brackets
    brackets_width = self.contents.text_size("[]").width
    # Make text string for state names
    text = ""
    for i in battler.states
      if $data_states.rating >= 1
        if text == ""
          text = $data_states.name
        else
          new_text = text + "/" + $data_states.name
          text_width = self.contents.text_size(new_text).width
          if text_width > width - brackets_width
            break
          end
          text = new_text
        end
      end
    end
    # If text string for state names is empty, make it [normal]
    if text == ""
      if need_normal
        text = "[Normal]"
      end
    else
      # Attach brackets
      text = "[" + text + "]"
    end
    # Return completed text string
    return text
  end

So go into Scripts and find Window_Base and then find line 175 and replace Normal with what ever.

I recomend adding [Resolved] to the topic title now.
« Last Edit: May 11, 2007, 09:04:08 PM by Mexneto »

***
Rep:
Level 88
http://www.rukinet.com
I recomend adding [Resolved] to the topic title now.

Damn! You came here before me! >_<


Rukinet. - the dot's included!