The RPG Maker Resource Kit

RMRK RPG Maker Creation => RPG Maker General => General Scripting => Topic started by: ahref on January 08, 2006, 02:03:59 PM

Title: brackets around characters current status
Post by: ahref on January 08, 2006, 02:03:59 PM
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 :)
Title: brackets around characters current status
Post by: Saber on January 08, 2006, 07:02:04 PM
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!
Title: brackets around characters current status
Post by: ahref on January 08, 2006, 08:13:43 PM
thanks i was going to look myself but i was trying to sort out a monster book that doesnt work