Yeah, I'm not doing ALL the toads. Just him. The idea is to represent ALL the in-universe DD stuff. Battletoads IS a part of it BUT beyond Rash as a playable character, that's about as much as I want to include from that part of the "Double Dragon" Tradewest universe. Even then, it will be more as a BONUS DLC sorta thing. The last of the NEW player characters I am introducing. The other one I'm including is a playable version of Jeff, as he was always the Boba Fett of this series.So Rash from Battletoad will be a playable character?
I'm curious to see what this ninja is worth: is it possible to display his sprites?
I will hit you up on DM. Sound good?So Rash from Battletoad will be a playable character?
I'm curious to see what this ninja is worth: is it possible to display his sprites?
literally, at the end of that script (that is attached above) I added the code from the script used by the sailor moon demo
BUT the problem with that is "ondoattackscript" is already being used.That's the mistake. You are supposed to copy the script file which is PinoDodge.c from Sailor Moon to your game, to data/scripts folder.
Then declare that script in the same way as Pino, which is like this:
ondoattackscript data/scripts/pinododge.c
in enemy's header text.
You can't have, say:
ondoattackscript ani0020ani
AND
ondoattackscript data/scripts/pinododge.c
#import or #include. This is where you have to start learning enough about the scripts that you can integrate them.main() which they execute each time the event fires. You can then have main() run your functions and do stuff. I will have to experiment some more. I more or less tried what you suggested and thought I had satisfied the conditions and such BUT then openbor.exe just wouldn't load the script. So I will have to try a few variations of what I'm doing to see where the bug is.You can't have more than one script FILE for an event hook, but that one file can have as may functions and logic chains in it as you feel like, AND it can pull material from other files using#importor#include. This is where you have to start learning enough about the scripts that you can integrate them.
The super short version is you copy (or more optimally, #import) functions you need into the existing file, and then execute them as needed.
All event hooks other than animationscript require a function calledmain()which they execute each time the event fires. You can then havemain()run your functions and do stuff.
DC