[FFVIII-PCSteam] Different music to a specific battle?

  • Thread starter Thread starter Hazedge
  • Start date Start date
Status
Not open for further replies.
H

Hazedge

Guest
Hey guys, I've created some time ago a post about how to add more music to the game, since no one answered that I had another idea and needed some help with it.
I have the Cactilio v0.2 and can change the battle units, but is there a way to choose which music will play in that specific unit?
My idea is: I'm making some secret Boss Fights in some places, when killing then you earn some great prizes. For then I wanted to play "512 Galbadia GARDEN (Alternate - UNUSED)" (I edited this music for this secret boss fight) instead of a normal fight ost.
 
Last edited:
If the fight is triggered through interacting with something on the field (like Cerberus, Bahamut, etc.), you can use the opcode SETBATTLEMUSIC to change what music plays.

The only other way I can think of would involve using enemy attacks programmed to change the music, like those used in the final boss fight series.
 
If the fight is triggered through interacting with something on the field (like Cerberus, Bahamut, etc.), you can use the opcode SETBATTLEMUSIC to change what music plays.

The only other way I can think of would involve using enemy attacks programmed to change the music, like those used in the final boss fight series.
You mean the only way is using 'SETBATTLEMUSIC' inside a enemy AI, putting it in 'Init' tab?
 
You mean the only way is using 'SETBATTLEMUSIC' inside a enemy AI, putting it in 'Init' tab?
Nah, with Deling. That's why it has to be something you trigger in a field map.

Since the last boss fights use enemy attacks to change the music, I assume there's no "change music" command for enemy AI.
 
Nah, with Deling. That's why it has to be something you trigger in a field map.

Since the last boss fights use enemy attacks to change the music, I assume there's no "change music" command for enemy AI.
Alright, with Deling only...
Is there a post that teaches how to do so? To trigger a music in a specific battle group?
 
Alright, with Deling only...
Is there a post that teaches how to do so? To trigger a music in a specific battle group?
PSHN_L      X
SETBATTLEMUSIC

Where "X" is the number of the music track (512 in your case), but I think you'd need to add another entity to the field. Deling doesn't have that functionality, so you'd have to find another way to do it. Unfortunately, I can't help you with that. The only workaround I can think of is repurposing existing entities into triggers for battles. Editing Draw Points would be least invasive, though I've never tried anything like this before.
 
I was looking around Deling and found the Cerberus fight event (ID 685, found in field.fs)

Looking at monster0 and talk, I've found this code:
Code: [Select]
Code:
LBL         52UCOFFPSHM_B      VAR344PSHN_L      128CAL         ORPOPM_B      VAR344PSHN_L      13SETBATTLEMUSICPSHN_L      118PSHN_L      0BATTLEBATTLERESULTPSHI_L      TEMP0PSHN_L      4CAL         EQJPF         LABEL0HIDETHROUGHONTALKOFFPSHN_L      12MENUNAMELABEL0PSHN_L      5SETBATTLEMUSICUCONRET         8
Looking at PSHN_L and SETBATTLEMUSIC in sequence, I noticed the PSHN_L 13 above and PSHN_L 5 below, showing that the event change the music to 13 Force Your Way and then gone back to 05 Don't Be Afraid.
Now the challenge is how to put it in random battles... Or if possible, to just create a new NPC and put him to enter a battle like the Ultimecia's bosses in her castle.

EDIT:
The PSHN_L 118 means the Cerberus battle, but how would I put the code to recognize this? Just putting it below SETBATTLEMUSIC? Or theres something else I'm not seeing?
 
Last edited:
I'm being able to see the codes inside the places, how can I see the encounters in worldmap?
 
Status
Not open for further replies.
Back
Top