Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Remove party window in battle

Status
Not open for further replies.

Oshare

Towns Guard
Xy$
0.00
If this has been asked before or if there's an easy solution to this, I apologize - I've been looking everywhere, in support, in plugins, everything, but somehow I just can't seem to do this, and I'm too afraid to edit the main files due to a lack of knowledge and fear of messing up.

Basically, I've been trying to get rid of the party window/character window in battles. All I really need is the battle commands, as there's only one party member and keeping track of HP isn't that much of an issue at all. So there's absolutely no need for me to have the party window at all.... But I haven't found a way to get rid of it yet, so this is a last resort.

If anyone needs anymore information than this feel free to ask, haha... This is the first time I've ever asked help whoops. //sweats
 

LTN Games

Master Mind
Resource Team
Xy$
0.01
The entire party window? Faces, & gauges, or just the window itself and keep the gauges & faces intact? If you only want to hide the window, and keep the actors information it's rather simple.

Add this code in a js file then add to your plugins, and it will hide the window, but keep actors information.
JavaScript:
var alias_WindowBattleStatus_initialize = Window_BattleStatus.prototype.initialize;
Window_BattleStatus.prototype.initialize = function() {
  alias_WindowBattleStatus_initialize.call(this);
  this.opacity = 0;
};
 

LTN Games

Master Mind
Resource Team
Xy$
0.01
LTN, that would just change the opacity of the window. It should be this.visible = false;
Yea, I explained that this will keep al the information there and hide the window skin itself, I was unsure if the op wanted it completely removed. Either way, both solutions are here now (cool)
 
Status
Not open for further replies.
Top