What condition sets this dialogue?

  • Thread starter Thread starter DLPB_
  • Start date Start date
Status
Not open for further replies.
D

DLPB_

Guest
Original game text (junone7)

Scarlet
“Why are you still standing there!?
   Catch her and take her away!”

junone7 > sca > script13 > 11

This will be shown if [5][16] var is 6.

That variable is set to 6 in one place (undersea water pipe): spipe_2 > Bubble2 > s0 main > 20

What this has to do with the above interaction with Scarlet is beyond me.  Unless this var is set to 6 here for totally unrelated reasons?
 
...That variable is set to 6 in one place (undersea water pipe): spipe_2 > Bubble2 > s0 main > 20

What this has to do with the above interaction with Scarlet is beyond me.  Unless this var is set to 6 here for totally unrelated reasons?
Doesn't matter where else this is set. Bank 5/6 is temporary and is reset each time the field changes. If [5][16] isn't set on that field then reading it will always return a 0.

That said, Scarlett's Script 11 starts with "Var[5][16] = Var[5][16] + 1 (8-bit)". So if that gets run 6 times then your text gets displayed. I would assume a certain condition during the slap-fest.
 
I forgot about temp banks...

You're absolutely right.

I'm thinking the dialogue occurs if you do a perfect slap count... i.e, scarlet does not land a single shot against you.

But I've just tried my hardest and she always gets at least one against me.  I'll keep trying.

edit.  Seems all you do is hold circle... but even then she lands a shot.  I don't see any way of getting this dialogue to occur.  It may be a script error (either you were meant to be able to do a perfect game against her, or the dialogue was meant to be shown due to some other factor).
 
Last edited:
Same dialogue.  Although by doing that you've found an error in the retranslation project :P  So not a total loss.
 
Same dialogue.  Although by doing that you've found an error in the retranslation project :P  So not a total loss.
Glad I could help  ;D
 
From what I can see, to beat her you need to slap her 5 times... that's where the var ends up as 5.  But that dialogue requires 6 slaps, which may be impossible due to a script oversight.
 
OK you can do a perfect run against her.  By timing circle presses properly.  But even then 5 ends the bout with the same dialogue.  I don't think that var ever reaches 6...
 
From what I can see, to beat her you need to slap her 5 times... that's where the var ends up as 5.  But that dialogue requires 6 slaps, which may be impossible due to a script oversight.
Kind of how the 1700 points on Tetra Master results in erroneous text. I guess that should be fixed.
 
Condition 2.  World map.  Canon has just disappeared from Junon.  This dialogue is supposed to be shown when Cloud notices that the canon is no longer there.  However, I can't make this dialogue appear.  Similar dialogue always seems to appear in Junon itself when the party notice the canon is gone, and then a var is set which must be used to make the canon disappear from the world map model.

In any case, I cannot get it to appear.

Dialogue is originally:

{CLOUD}
“…I got the feeling
    I'm forgetting something…”

It may be that this dialogue ended up being unused, because they had the exposition happen on the field instead.
 
Last edited:
Have you tried with both subs? IIRC, the "I think we're missing something" happens when you go to the underwater reactor. I know the "you failed the sub game" scenario is different, but the field thing happens earlier than that, doesn't it?

Are you sure it has anything to do with the cannon? Maybe he's talking about the key to the ancients or he left an area before he was supposed to do something...
 
Pretty sure it's the canon, but can't be sure.  You can't get to the sub without the canon disappearing first and field dialogue being displayed.

It wouldn't be the first time there was unused wm dialogue though...

Tifa has a dialogue for when the buggy breaks down, for example.
 
Last edited:
To be honest, the world map idea makes far more sense.  That's how that dialogue should have been displayed.  In the revision they've made, you go into Junon seeing the canon still there, and then suddenly when you arrive at the area, it's gone.  It doesn't work well for continuity.

Somewhere along the line it looks to me like they vetoed the world map exposition in favour of the field.  And I think that was a bad idea.  Further to that, I remember the first time I saw the junon cannon exposition- I thought "What's missing... I don't get it".  If it had been on the world map, the missing canon would have stuck out like a sore thumb.

Unless the dialogue can still be seen somehow.  I dunno. Maybe one day we'll have a world map script editor?
 
Last edited:
Can't you set the variable to remove the canon on an earlier scene, I would say fship_3 is a good point after Cloud has joined the party again and tells the truth.
 
The variable to remove the canon only removes the model from the world map.  It doesn't invoke any dialogue when you arrive outside junon.
 
Yeah, but it's still better as when it magically vanishes after you enter the Junon event.
 
Yeah, but it's still better as when it magically vanishes after you enter the Junon event.
Yeah, that's an easy way to fix it so that the field dialogue actually feels right. It would be nice to see if we could restore the wm dialogue though :)
 
@nfitc1 me and sithlord had a discussion last night about the save banks, because bank 10 was not remembering the vars on entry/exit to a field.

According to the wiki, this makes sense. It looks like a lot more banks besides 5 and 6 are for temp vars only.  The wiki shows which are saved.   I think it is 1,2,3,4,7, 11,12,13, 14, 15.

Yup it is:

http://wiki.qhimm.com/view/FF7/Savemap

A bit bizarre that bank 7 does not follow on from 4 in memory.
 
Last edited:
@nfitc1 me and sithlord had a discussion last night about the save banks, because bank 10 was not remembering the vars on entry/exit to a field.
Here's how I have it set in my list:

Code: [Select]
Code:
Handlers:Bank_0_Const       0x60F88EBank_12            0x60F8B9Bank_34            0x60F8F5Bank_56            0x60F9F3Bank_7F            0x60F9B5Bank_BC            0x60F936Bank_DE            0x60F977Bank_89A_Null      0x60FA2B
There is no Bank 0. That's a "read byte at absolute memory address X" command. This is a dummied "return [byte_arg] command". Likely unused.
Five of these banks are saved to the savemap which excludes 5/6. 8/9/A actually have no handler. If they're used in the field scripts they will do nothing. Here's the handler for 8/9/A on the PC:

Code: [Select]
Code:
.text:0060FA2B ; ---------------------------------------------------------------------------.text:0060FA2B.text:0060FA2B Bank_89A_Null:                          ; CODE XREF: Read_Field_Mem_Byte+126j.text:0060FA2B                                         ; Read_Field_Mem_Byte+137j.text:0060FA2B                                         ; DATA XREF: ....text:0060FA2B                 xor     al, al          ; default.text:0060FA2B                                         ; jumptable 0060F887 cases 8-10
Exciting, isn't it? :)

tl;dr: 0 is possibly unused, 5/6 are field-based temporary, 8/9/A are dummied.

EDIT:
Those are the "Read Byte Handlers", the "Read Word Handlers" aren't much different.
 
Last edited:
1. So what you are saying is 8,9 and A are completely unused, and cannot be used at all by anything?

2. Can world map use temp 5/6 ?  It does seem to use bank 1 for a few things if I recall.

3. Also, I noticed battle temp vars are copied at the end of battle to main vars (like escapes, kills) and that it's hardcoded.

4. Can battle AI change addresses / bank vars? And does it?
 
Last edited:
Status
Not open for further replies.
Back
Top