This script displays an encounter balloon over your player character on the
map whenever you are about to encounter a random battle monster.
When this balloon is displayed, the player can choose to skip the random
encounter by pressing a specific button.
This only applies to random encounters.
Download
Script and demo: Get it at Hime Works!
You will also need this spritesheet. Place it inside your Graphics/System folder
Usage
Place the above spritesheet into your Graphics/System folder.
There are several configuration options, though the defaults should be fine for most purposes.
You can disable the encounter balloon option by making a script call
Skip Condition
Each troop comes with a skip condition, which is a special condition
associated with the troop that determines whether your party can skip
the battle or not.
To set up a skip condition:
1. Create an event page for the troop
2. The first command must be a comment, with the line
<skip condition>3. The second command is a conditional branch, which you will use to specify the skip condition
Whenever a random encounter appears, the colour of the balloon determines
whether you can skip the battle or not: if it is red, then you can’t skip.
If it is blue, then you can skip. The skip condition must be met in order
for the balloon to be blue. If no skip condition is specified, then it is
assumed to be not skippable.
Encounter Points
In order to skip battles, you must have enough "encounter points". The encounter points are stored with the game party, and tied to a variable of your choice.
In the configuration, you can set the max amount of encounter points you can have.
Each troop may require a certain amount of encounter points in order to skip.
If you choose to skip the battle, then your encounter points will decrease
by that amount.
To specify the amount of encounter points is required to skip a battle:
Encounter Level
In addition to encounter points, a party also has an encounter level.
This can be used in the encounter points formula.
You can change the encounter level by changing the assigned variable, or using script calls
encounter_level_up(x)encounter_level_down(x) Disabling encounter skipping
You can disable the encounter balloon option by making a script call
If disabled, random encounters will be processed as usual.
map whenever you are about to encounter a random battle monster.
When this balloon is displayed, the player can choose to skip the random
encounter by pressing a specific button.
This only applies to random encounters.
Download
Script and demo: Get it at Hime Works!
You will also need this spritesheet. Place it inside your Graphics/System folder
Usage
Place the above spritesheet into your Graphics/System folder.
There are several configuration options, though the defaults should be fine for most purposes.
You can disable the encounter balloon option by making a script call
Skip Condition
Each troop comes with a skip condition, which is a special condition
associated with the troop that determines whether your party can skip
the battle or not.
To set up a skip condition:
1. Create an event page for the troop
2. The first command must be a comment, with the line
<skip condition>3. The second command is a conditional branch, which you will use to specify the skip condition
Whenever a random encounter appears, the colour of the balloon determines
whether you can skip the battle or not: if it is red, then you can’t skip.
If it is blue, then you can skip. The skip condition must be met in order
for the balloon to be blue. If no skip condition is specified, then it is
assumed to be not skippable.
Encounter Points
In order to skip battles, you must have enough "encounter points". The encounter points are stored with the game party, and tied to a variable of your choice.
In the configuration, you can set the max amount of encounter points you can have.
Each troop may require a certain amount of encounter points in order to skip.
If you choose to skip the battle, then your encounter points will decrease
by that amount.
To specify the amount of encounter points is required to skip a battle:
- In the same troop page that you used for the skip condition
- Create a comment "<encounter points>"
- Create a "control variable" command, and use the script box to set theamount of encounter points required. This is a formula.
Encounter Level
In addition to encounter points, a party also has an encounter level.
This can be used in the encounter points formula.
You can change the encounter level by changing the assigned variable, or using script calls
encounter_level_up(x)encounter_level_down(x) Disabling encounter skipping
You can disable the encounter balloon option by making a script call
Code:
disable_encounter_balloonenable_encounter_balloon
Last edited by a moderator:

