Main Menu
  • Welcome to The RPG Maker Resource Kit.

brackets around characters current status

Started by ahref, January 08, 2006, 02:03:59 PM

0 Members and 1 Guest are viewing this topic.

ahref

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 :)

Saber

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:

       text = "[Normal]"

Change it to this:

       text = "Normal"

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

     text = "[" + text + "]"

Change it to this:

     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!

ahref

thanks i was going to look myself but i was trying to sort out a monster book that doesnt work