FF7 Always start with full limit break bar??

  • Thread starter Thread starter reversebustersword
  • Start date Start date
Status
Not open for further replies.
R

reversebustersword

Guest
Is there a way to start with a full limit break bar every time you go into battle? I want Vincent to always be in his first limit break form.
 
You could alter Vincent's Pre-battle AI to make his bar full every battle. I don't know if it can actually activate the limit or not.
 
Are you talking about the initial data in the Wallmarket? When I go to the character AI section and try to do something with Vincent's pre-battle, the Opcode and Argument section is blank.
 
Because he doesn't have anything in that slot. You have to start adding your own code.
 
There's nowhere to click on to edit. Only in the Main* there's numbers but I don't know what any of this means??
 
I do believe WallMarket comes with a user manual, no? That's how I learned the basics of AI scripts.
 
idk why but when I try using 'wallmarkethelp' everything is blank other than the labels on the left. Can anyone screenshot the manual so I can read it?
 
idk why but when I try using 'wallmarkethelp' everything is blank other than the labels on the left.
:-o I guess that's not too surprising. It's from an old readme maker that I can't even find anymore. I don't even have the original source files to rebuild it.
 
Just click on the empty script and hit Enter, that should open a new script starting with 73 (which is Script End); you can then add script to it by typing in the numbers.
 
Just click on the empty script and hit Enter, that should open a new script starting with 73 (which is Script End); you can then add script to it by typing in the numbers.
omg your right! Now what's the magic formula that'll give Vincent max limit gauge every battle??
 
Ya know. I just realized yesterday that there is no Script value for limit gauge. You might be able to force him to use a limit using
Code: [Select]
Code:
60  1460  XX9273
I'm not sure what XX would be. Either 2D or AD. Most likely 2D. That would force him to become Galian Beast. You could also add a random amount in case you want it to be different every battle. I'm not sure how this would behave when encountering enemies (bosses) that have pre-battle scripts of their own.
I think he'd also revert to Vincent if he dies.

Anyway, it's all possible to do.
 
Man thank you so much!! ;D

is there a code for Vincent's other limit breaks?
 
Last edited:
Replace the XX with:
2D - Galian Beast
2E - Death Gigas
2F - Hell Master
30 - Chaos
 
Replace the XX with:
2D - Galian Beast
2E - Death Gigas
2F - Hell Master
30 - Chaos
It should really be the attack index though. So it would be like this;

AD - Galian Beast
AE - Death Gigas
AF - Hell Master
B0 - Chaos

If you call 2D or one of the IDs in that range, he will use Comet or something with a completely wrong animation. (Or potentially crash the game since his animation scripts are what cause him to transform in the first place)
 
It should really be the attack index though. So it would be like this;

AD - Galian Beast
AE - Death Gigas
AF - Hell Master
B0 - Chaos

If you call 2D or one of the IDs in that range, he will use Comet or something with a completely wrong animation. (Or potentially crash the game since his animation scripts are what cause him to transform in the first place)
Ah screw it, you're right. I'm thinking about animations being relative. Indexes are absolute.
 
Status
Not open for further replies.
Back
Top