YANFLY ENGINE ACE - VICTORY AFTERMATH

RPG Maker VX Ace

A visual screen of what your party gained after battle.

  • YF
  • 12/17/2011 02:59 PM
  • 15586 views


Download Script

At the end of each battle, RPG Maker VX Ace by default shows text saying that the party has gained so-and-so EXP while this person leveled up and your party happened to find these drops. This script changes that text into something more visual for your players to see. Active battle members will be seen gaining EXP, any kind of level up changes, and a list of the items obtained through drops.





After winning a battle, EXP gains are displayed per actor. This is because EXP can vary depending on actor traits and party splitting EXP from scripts such as the Party System.





Actors also get quotes to say for various parts of the aftermath. This personalizes them a bit more instead of just having random blurbs saying how much EXP was acquired and whatnot.

To personalize the quotes, insert these tags in either the actor noteboxes or the class noteboxes. Actor quotes will take priority over class quotes which will take priority over the default quotes that can be set in the module.

<win quotes>
string
string
</win quotes>

Sets the win quote for the actor. The strings are continuous and can use text codes. Use \n for a line break. Type in what you want the actor to say for the particular win quote. Use in between the two tags to start up a new quote.

<level quotes>
string
string
</level quotes>

Sets the level up quote for the actor. The strings are continuous and can use text codes. Use \n for a line break. Type in what you want the actor to say for the particular win quote. Use in between the two tags to start up a new quote.

<drops quotes>
string
string
</drops quotes>

Sets the drops quote for the actor. The strings are continuous and can use text codes. Use \n for a line break. Type in what you want the actor to say for the particular win quote. Use in between the two tags to start up a new quote.





Actors, when leveling up, will show stat changes and skills learned. If the amount of skills learned exceeds 8 skills in one go, the skill list becomes scrollable.





Gold and items will be shown in the victory spoils section. Items will be organized and grouped together, sorted by Item ID, then Weapon ID, then Armour ID. Gold will always be displayed first.





Other settings are found in the module such as a switch to skip the aftermath phase and a common event set to run after each battle. Read through the module carefully and adjust it as you see fit.

---

Original blog page

Posts

Pages: 1
Milos
Lone Wolf, or something cool.
286
This would have fit perfectly into my game if I figured out scripting :(
author=Milos
This would have fit perfectly into my game if I figured out scripting :(

# To install this script, open up your script editor and copy/paste this script
# to an open slot below ▼ Materials/素材 but above ▼ Main. Remember to save.

** BTW - Great job on this on, love it! **
Hi there,

First lemme just say I love your scripts! They are great!

I have run into a problem with the victory after math and using \n to make a new line....

This is what I have in the notes section of a Character...

<win quote>
"For the good of the people."

"How many was that? \n I've lost count."
</win quote>

<level quote>
"I must get stronger."

"My skills, my honor."
</level quote>

<drops quote>
"Anything we can give back \n to the people?"

"Thank you for your coupons!"
</drops quote>

is there something that I am doing wrong? I have been trying various attempts of different ways to write it but with no luck... any help you can give will be appreciated!

Thanks,

Kleigha
^I'm having the same problem.
author=D
^I'm having the same problem.

You're simply forgetting 'New Quote' in between each sentence. And it's "quotes" not "quote". Like this:

<win quotes>
No one can stop me!
'New Quote' <----- use square brackets instead of " ' "
Come and get some!
</win quotes>
I'm having the same issue with line breaks, not sure where I should be putting the \n at for a single quote. For example:

<win quotes>
"How many is that? \n
I've lost count."
</win quotes>

I've been messing about with it for about an hour >.<
author=Zeke8
I'm having the same issue with line breaks, not sure where I should be putting the \n at for a single quote. For example:

<win quotes>
"How many is that? \n
I've lost count."
</win quotes>

I've been messing about with it for about an hour >.<

Same as him. Any help?
author=Darkspinesupersonic
author=Zeke8
I'm having the same issue with line breaks, not sure where I should be putting the \n at for a single quote. For example:

<win quotes>
"How many is that? \n
I've lost count."
</win quotes>

I've been messing about with it for about an hour >.<
Same as him. Any help?


You've put a new line there. As I've understood, the full quote is on a single line

<win quotes>

"How many is that?\nI've lost count."
</win quotes>
Pages: 1