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.
brackets around characters current status

0 Members and 1 Guest are viewing this topic.

*
Resident Cloud
Rep:
Level 91
i know this sounds silly but is there a script that can change the way that the status effects are displayed:

[normal]

id prefer:

normal

if you have no idea what im on about tell me :)

**
Rep: +0/-0Level 89
This one is easy. (I'm going to do do this assuming you have the legal English version.)

Go to Window_Base, and find line 175. It should look like this:

Code: [Select]
       text = "[Normal]"


Change it to this:

Code: [Select]
       text = "Normal"


Next, find line 179. It should look like this:

Code: [Select]
     text = "[" + text + "]"


Change it to this:

Code: [Select]
     text = text


That'll make it display without brackets. You could clean up the code even more by removing the if/else statement, but that's for you to do if you know what you're doing. Enjoy!
Project(s):
Dragonblade: First Awakening - Demo not yet available
Dragonblade: The Forum game - Join now!

*
Resident Cloud
Rep:
Level 91
thanks i was going to look myself but i was trying to sort out a monster book that doesnt work