- Joined
- Feb 28, 2013
- Messages
- 506
- Reaction score
- 293
- First Language
- English
- Primarily Uses
- RMMZ
@alltheyuriz in an event show the picture(s) arranged how you like them. Then using plugin command, link the picture number to a common event.
I tried entering the short names (def, mdef, etc) of the parameters I was testing with the two plugins into the VS categories field where the other entries were in the status menu, but when entering the game, it just left a blank space.
For what @BloodletterQ answered:Hello people, I have another simple question: How do I change the battle text while using this plugin? When I miss an attack in battle, the word "miss" pops up, but I want to change it to my own language...
But what I need is a liiitle more: I want different texts for Miss and Evade. I managed to insert a new Sprite function:@SolonWise I did what you asked for:
- Go RMMZ_Sprites.js
- Search for "Sprite_Damage.prototype.createMiss = function() {"
- Edit the "Miss" in "sprite.bitmap.drawText("Miss!", 0, 0, w, h, "center");"
Sprite_Damage.prototype.createEvade = function() {
const h = this.fontSize();
const w = Math.floor(h * 3.0);
const sprite = this.createChildSprite(w, h);
sprite.bitmap.drawText("Evade", 0, 0, w, h, "center");
sprite.dy = 0;
};
Sprite_Damage.prototype.setup = function(target) {
const result = target.result();
if (result.missed) {
this._colorType = 0;
this.createMiss();
} else if (result.evaded) {
this._colorType = 0;
this.createEvade();
} else if (result.hpAffected) {
this._colorType = result.hpDamage >= 0 ? 0 : 1;
this.createDigits(result.hpDamage);
} else if (target.isAlive() && result.mpDamage !== 0) {
this._colorType = result.mpDamage >= 0 ? 2 : 3;
this.createDigits(result.mpDamage);
}
if (result.critical) {
this.setupCriticalEffect();
}
};
Hey! I think you might get a look in the BattleCore Party Command and Actor Command Window notetags... I'm not sure about window manipulation (like the 2 columns).Is there any way to show additional battle commands? I'd like to show 6 or 8. Maybe 6 with one 'MISC' that launches a sub menu for items, party, escape, etc. I'm using the battle engine and a few others.