I have been going nuts and can't seem to find and answer to this. But I have a skill where I would like to call three different common events at different points in the skill. Unfortunately no matter where I put a common event it only seems to run them at the end of the sequence and only one of them. Any ideas as to why this might be happening?
Some further details: The common events just show a picture. I have also just tried one common event but even that one just appears at the end no matter where in the sequence I put it.
Thanks for responding. I have included screenshots of the common events being used. I have also updated the skill to reflect the new Common Event IDs but no luck.
Does showing state related messages when a state is applied inside an action sequence actually work? I.e. writing an action sequence like this:
Code:
<setup action>
add state 4: target, show
</setup action>
It adds the state, but it doesn't show the state related message like it should. I have already turned state text on in the BattleEngineCore. I have a sample project if needed.
I created a google spreadsheet hoping that we can have a great collection of all greatest yanfly action sequences for our games, share your action sequence here if you want!
Does showing state related messages when a state is applied inside an action sequence actually work? I.e. writing an action sequence like this:
Code:
<setup action>
add state 4: target, show
</setup action>
It adds the state, but it doesn't show the state related message like it should. I have already turned state text on in the BattleEngineCore. I have a sample project if needed.
I don't know exactly what setting you are referring to, but I have turned all battle related text on, including state text. I have tried turning the 'optimise speed' setting off, but it makes no difference.
Thanks for responding. I have included screenshots of the common events being used. I have also updated the skill to reflect the new Common Event IDs but no luck.
I just test it exactly like you put it in here, and the images are working, they move grown appear and disappear with no problem,
You say that only one of the actions was working right? the last one.
Try to test it with no zoom to see if the other to images are appearing it can be that you cannot see them because of how quick the movement is, or maybe they are getting out of the game window without you knowing.
Sorry for not being of more help but the sequence is working for me.
Hi! So I am making a game and am kind of new to Action Sequence Pack, I was wondering if you could help me with a sequence. If you can help me that'd be great!
This is my "Fire Invocation" skill which essentially is for cramming all version of "Fire" (i.e. Fire, Fira, Firaga, etc.) into one skill based on how well the timed attack is triggered.
This uses Yanfly's Action Sequences packs, as well as Damage Core, Critical Core, and finally SumRndmDde's Timed Attack / Timed Attack Action Sequence plugins (which are specifically for Yanfly's Action Sequences and others mentioned).
The Timed Attack 34 is Skill 34, which is this:
<timed attack: circle>
Color: Red
<end timed attack>
(It's actually the standard Circle timed attack just made Red.)
In the future I want to add forced damage and mana use if possible as well as triggering a scene for each one before use instead of just a different animation.
The damage formula needs to be something like this:
I imagine if the "100" was raised to something higher then the "$gameTemp.tas_power" would make it much stronger depending on timing.
The timing variable itself is from 0 to 1, so say you time it very well but not perfect, it might be around 0.8 or 0.9. That gives you 80 to 90% of the damage.
So adding a damage bonus or at least accounting for that would help balance.
You could also have it read like:
"(100 + a.mat * 2 - b.mdf * 2) * (1 + $gameTemp.tas_power)" so that the timing ONLY adds a percentage of bonus damage, but then you'd definitely want to change the skill's variables, otherwise you'll always do critical and do the biggest form of Fire.
The person had requested for " All I want is a skill to show a certain weapon and attack stance. "
How do I edit this or any skill to show any weapon I want (Thus, not working with the user's equipped weapon). Is the work around to have animations for each weapon? Or is there a simpler way?
The person had requested for " All I want is a skill to show a certain weapon and attack stance. "
How do I edit this or any skill to show any weapon I want (Thus, not working with the user's equipped weapon). Is the work around to have animations for each weapon? Or is there a simpler way?
Yanflys Weapon Animation plugin allows switching the weapon graphic mid animation or per skill. So theoretically you could have someone use a sword and then a flail etc. Would be cool for a weapon master like Firion from FF2 or Dissidia more specifically.
I'd like to know how to make the battlers always have their weapon displaying like a modern FF game or any modern RPG really.
Couldn't the animation be done under <whole action> to target the group of enemies? Perhaps there is a target that specifies a random enemy as well? I'd like to know how to do this too.
(To you or anyone else)
I've been going through this thread and so far reached up to page 22. Earlier there was someone who attempted a throw skill where you throw your ally to the enemy for damage, but they encountered problems actually picking up and throwing the ally. I'm not aware of the action sequence being achieved - so is it possible?
The action sequence code was:
Code:
<target action>
display action
perform start
wait for movement
motion guard: user
face user: backward
move user: friend 2, front center, 20
wait for movementwait: 20
face user: forward
move friend 2: target, front center, 10
action animation: target
wait for animation
HP -10%: target, show
death break
perform finish
clear battle log
</target action>
(To you or anyone else)
I've been going through this thread and so far reached up to page 22. Earlier there was someone who attempted a throw skill where you throw your ally to the enemy for damage, but they encountered problems actually picking up and throwing the ally. I'm not aware of the action sequence being achieved - so is it possible?
The action sequence code was:
<target action>
display action
perform start
wait for movement
motion guard: user
face user: backward
move user: friend 2, front center, 20
wait for movementwait: 20
face user: forward
move friend 2: target, front center, 10
action animation: target
wait for animation
HP -10%: target, show
death break
perform finish
clear battle log
</target action>
I'm not even aware of the ability to move other characters during an action sequence. I haven't ever seen that written down. If "move friend 2" is possible then it should work. I also was not aware of "hp -10%" so I would like a link to the command sheet referencing these. Please send me a link and I will try my best to understand the possibilities.
Hi. I THINK I HAVE A REVOLUTIONARY IDEA FOR YANFLY!!
Is it possible to evaluate button inputs? Inside the action sequence, you'd have a button evaluation check that can influence switches/variables. This way you can do stuff like:
> Enable stronger hits when the player presses the button in a timely manner.
> Execute a combo attack in different ways ("Z" button to send them up, "X" button to send them back).
>> You can even take this further and have evaluation checks for how close your allies are so that they can partake in the combo as well.
>> EVEN FURTHER, you can evolve the counter system such that counters work on particular attacks and the player has to execute his combo attacks in a particular way to not be punished by the enemy's counter style.
This is probably more a pluggin suggestion, so how may I ensure this idea gets to Yanfly? Anyone reading this, please feel free to let Yanfly know of this
----------------------------------------
Anyways, I'm wondering if it's possible without Yanfly updating the scripts. What if you turn on a switch at the start of an action sequence who activates a parallel global common event. This common event checks for button inputs and temporarily turns on swtiches/variables.
Back to the action sequence now - It would check for these additional switches/variables to execute the action sequence differently.
At the end of the sequence, it disables the switch to disable the common event.
Do you think this can work??? I'm not in a position to test such stuff yet.
EDIT: So I'm thinking how it may work (Not in a logical order; Just explaining):
Action Sequence - Turn on Switch 1
...
Common Event (Parallel Process turned on by Switch 1)
-> Conditional Branch: Switch 2 ON?
(Would be repeating)
...
Action Sequence
- Turn on Switch 2; Move user to enemy / show animation (up to you)
- (Would check for button input here)
-Turn off Switch 2; Action effect
(Back to Common Event)
-> Conditional Branch: Switch 2 ON?
-> Yes
-> Cond Branch: Is button being pressed?
-> Yes: Turn on Switch 3
(Back to action sequence)
- Turn on Switch 2; Move user to enemy / show animation (up to you)
-> If Switch 3 ON: Do something
-> Else: Do something else
-Turn off Switch 2; Action effect
(This could probably be simplified with less switches, but with 3 switches it'd be better for multiple button input opportunities I think?)
EDIT 2: At the time of posting this, I was on page 27 and now I've reached to this page (32) and I see that dragon3025 and astergilgamesh have both talked about timed button inputs as well ._.
> Enable stronger hits when the player presses the button in a timely manner.
> Execute a combo attack in different ways ("Z" button to send them up, "X" button to send them back).
>> You can even take this further and have evaluation checks for how close your allies are so that they can partake in the combo as well.
>> EVEN FURTHER, you can evolve the counter system such that counters work on particular attacks and the player has to execute his combo attacks in a particular way to not be punished by the enemy's counter style.
Just beat the last of us 2 last night and starting jedi: fallen order right now, both use unreal engine & when I say i knew 80% of jedi's buttons right away because they were the same buttons as TLOU2 its ridiculous, even the same narrow hallway crawl and barely-made-it jump they do. Unreal Engine is just big budget RPG Maker the way they make games nearly identical at its core lol.
Can someone recommend some fun story-heavy RPGs to me? Coming up with good gameplay is a nightmare! I was thinking of making some gameplay platforming-based, but that doesn't work well in RPG form*. I also was thinking of removing battles, but that would be too much like OneShot. I don't even know how to make good puzzles!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.