Nice it worked Will take a look at the Persistent alignment thing. But, for now, you may be able to solve the problem by putthing those lines on the end of my plugin(before the last bracket } ):
Window_Base.prototype.setDefaultTextAlignment = function() { this.currentAlign = 'center' } Window_Command.prototype.setDefaultTextAlignment = function() { this.currentAlign = 'center' }
Also by changing any code like this:
this.currentAlign = 'left'
to ths:
this.currentAlign = 'center'
See if that will help.