- Joined
- Dec 20, 2013
- Messages
- 1,276
- Reaction score
- 570
- First Language
- english
- Primarily Uses
Okay, so, working with the Yanfly suite of plugins, and taking some cues from their tutorial on doing the FF Dragoon-style Jump attack (or, Pokemon-style Fly attack), I managed to work out how to create a Blur/Hide/Stealth skill/state which actually changes the sprite's opacity.
This is what I have for those (under a spoiler for space-saving)

So, this is the Blur Skill, which puts the Blur state on the actor. The Blur state has this in the note tags:

This is the Fadein skill, which is triggered when the state expires, basically to return the actor's opacity to normal.
The problem i'm having is when i use the Duplicity spell to apply the Blur state to all allies. This is in the Notes for Duplicty:

now, after some tweaking i did find that changing Opacity User to Opacity Actors in the skill does apply the opacity reduction to all actors. The issue is that the opacity effect is ONLY thing that happens. The skill animation doesn't play and the state does not get applied to any of the actors.
CLEARLY, I am doing something wrong, but i have NO idea what. Any help?
This is what I have for those (under a spoiler for space-saving)

So, this is the Blur Skill, which puts the Blur state on the actor. The Blur state has this in the note tags:
// Buffs & States Core
<Custom Leave Effect>
// Get the reappear skill.
var skill = 35;
// Get the last targeted index.
var target = -2;
// Queue the forced action.
BattleManager.queueForceAction(user, skill, target);
</Custom Leave Effect>

This is the Fadein skill, which is triggered when the state expires, basically to return the actor's opacity to normal.
The problem i'm having is when i use the Duplicity spell to apply the Blur state to all allies. This is in the Notes for Duplicty:

now, after some tweaking i did find that changing Opacity User to Opacity Actors in the skill does apply the opacity reduction to all actors. The issue is that the opacity effect is ONLY thing that happens. The skill animation doesn't play and the state does not get applied to any of the actors.
CLEARLY, I am doing something wrong, but i have NO idea what. Any help?

