GrantDaGreat68
Villager
- Xy$
- 0.00
Hello,
I'm using the Yanfly plugin for Action Sequence Packs 1-3. I'm trying to do a basic attack to have a stab animation. Here is my code so far. When I have enemies use the skill nothing happens. And for my heroes once they learn the skill it is grayed out and they can't even use it. What am I doing wrong here.
Here is the coding:
<Learn Require Level: 1>
<Learn Cost: 50 JP>
<setup action>
display action
If user.attackMotion()=='missile'
camera focus: target
camera offset: right, 50
else
camera focus: user
wait: 40
camera focus: target
camera offset: right, 50
end
immortal: targets, true
</setup action>
<target action>
if user.attackMotion()!=='THRUST'
move user: target, front, 20
else
perform start
end
I'm using the Yanfly plugin for Action Sequence Packs 1-3. I'm trying to do a basic attack to have a stab animation. Here is my code so far. When I have enemies use the skill nothing happens. And for my heroes once they learn the skill it is grayed out and they can't even use it. What am I doing wrong here.
Here is the coding:
<Learn Require Level: 1>
<Learn Cost: 50 JP>
<setup action>
display action
If user.attackMotion()=='missile'
camera focus: target
camera offset: right, 50
else
camera focus: user
wait: 40
camera focus: target
camera offset: right, 50
end
immortal: targets, true
</setup action>
<target action>
if user.attackMotion()!=='THRUST'
move user: target, front, 20
else
perform start
end