08-07-2019, 05:10 AM
I GOT IT!!!!!!!
At the BOTTOM of the system, the READ ME.....
There are script call commands, one 'ENABLES INTRO BATTLE CRIES!!!!!' It's disabled by default!!!??? Like... he couldn't make it a configurable too???
The content is lines 80-81 of the READ ME chapter in the demo which allows INTRO cries... and 84-85 to allow victory cries.
After that, I made THIS little sucker
THIS way works.....
When I tried it THIS way....
.... nope, that way didn't work. But my bad as I was rewriting the value of Actor_Battle_Cry for actor 1 each iteration instead of compiling them into one as I did in the above version.
BUT... I had to activate intro cries in a script call first.
At the BOTTOM of the system, the READ ME.....
There are script call commands, one 'ENABLES INTRO BATTLE CRIES!!!!!' It's disabled by default!!!??? Like... he couldn't make it a configurable too???
The content is lines 80-81 of the READ ME chapter in the demo which allows INTRO cries... and 84-85 to allow victory cries.
After that, I made THIS little sucker
Code:
Actor_Battle_Cry[1] = {'COLLAPSE' => [['011-System11',80,100]],
'INTRO' => [['007-System07',80,100]],
'DEFENSE' => [['007-System07',80,100]] }
When I tried it THIS way....
Code:
Actor_Battle_Cry[1] = {'COLLAPSE' => [['011-System11',80,100]]}
Actor_Battle_Cry[1] = {'INTRO' => [['007-System07',80,100]]}
Actor_Battle_Cry[1] = {'DEFENSE' => [['007-System07',80,100]]}
BUT... I had to activate intro cries in a script call first.