06-22-2022, 02:09 AM
No it doesn't. Again, your config shown below sets absolutely no chance of any attack.
and
Again, the system will not push any attack into your victim battler if you have no chance set.
Chance of a counter attack defaults at 0
If a battler (actor or enemy) is not listed, the chance is set to 0
And in your configuration, all your defined battlers have '0' chance of a counter... so still 0
And if 0 chance of attack... no enemy targets will ever be selected for a counter.
Battle Report scripts only affects the "Phase 5" or -end-of-battle phase of a battle system.
And Shop Scripts, including Phylomortis's classic Advanced Shop Script, has nothing to do with battle systems.
So your error message is not possible unless you have something else or had rewritten the basic engine in some way.
Again.... Create a 'new' project. Nothing in it... Fresh. Then PASTE a copy of this script in place as you would any. And make a simple battle event to fight two ghosts. Use MY config as yours is borked, not allowing any counters to occur.
(06-21-2022, 02:11 AM)DerVVulfman Wrote: # Actor Counters
# ==============
# Define the actors perfoming counter attacks: the chance of a counter,
# the skill ID used (or 0 for melee), and optionally the SP cost.
#
# Chance Skill SPCost
#========== ====== ====== ======
ACTOR[2] = [ 0, 0] # Basil delivers melee 0%
# Enemy Counters
# ==============
# Define the enemies perfoming counter attacks: the chance of a counter,
# the skill ID used (or 0 for melee), and optionally the SP cost.
#
# Chance Skill SPCost
#========== ====== ====== ======
ENEMY[1] = [ 0, 7, true] # Ghosts use Fire 0% (never)
and
(06-21-2022, 02:11 AM)DerVVulfman Wrote: # Skip if there is no chance of counter
next if chance == 0
# Skip if counterattack failed
next if chance < rand(100)
# Push active battler into array
target.countertargets.push(@active_battler)
#
end
#
end
Again, the system will not push any attack into your victim battler if you have no chance set.
Chance of a counter attack defaults at 0
If a battler (actor or enemy) is not listed, the chance is set to 0
And in your configuration, all your defined battlers have '0' chance of a counter... so still 0
And if 0 chance of attack... no enemy targets will ever be selected for a counter.
Battle Report scripts only affects the "Phase 5" or -end-of-battle phase of a battle system.
And Shop Scripts, including Phylomortis's classic Advanced Shop Script, has nothing to do with battle systems.
So your error message is not possible unless you have something else or had rewritten the basic engine in some way.
Again.... Create a 'new' project. Nothing in it... Fresh. Then PASTE a copy of this script in place as you would any. And make a simple battle event to fight two ghosts. Use MY config as yours is borked, not allowing any counters to occur.