Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Random Battle Music Boss & Final Boss setup
#1
This is a locked, single-post thread from Creation Asylum. Archived here to prevent its loss.
No support is given. If you are the owner of the thread, please contact administration.


ok, this is a script i made a while back.

To explain further:
This script will randomize the battle music choosing
from 4 preselected tracks.
You set it before battle to be either a regular boss
battle, or a final boss battle.
The music will be set back to regular battle music
after you finish a boss battle.

To Implament:
Go to Scene_Map, around line 172 you'll see this:

Code:
$game_system.bgm_play($game_system.battle_bgm)


replace it with this:

Code:
#----------------------Edit---------------------------------------------------    
#Random Battle Music and Set Boss Music
  if $boss == 2      #If you are fighting the final boss
    Audio.bgm_play("Audio/BGM/011-LastBoss03")#Can change to whatever music
   else                                       #you choose.
   if $boss == 1     #If you are fighting any boss
    Audio.bgm_play("Audio/BGM/fftsweggy")
    else
     case rand (3)   #For any regular battle. Randomizes through four BGM's
      when 0         #To Add: Increase rand (3) and add another "when" statement
       $game_system.bgm_play($game_system.battle_bgm)
      when 1
       Audio.bgm_play("Audio/BGM/fftbat11")
      when 2
       Audio.bgm_play("Audio/BGM/002-Battle02")
      when 3
       Audio.bgm_play("Audio/BGM/004-Battle04")
     end
   end
end
$boss = 0  
#----------------------Edit---------------------------------------------------


To Use:
To make a regular boss battle-
Before battle, call script and put this in it:
Code:
$boss=1

To make a final boss battle-
Before battle, call script and put this in it:
Code:
$boss=2


Hope you like it! My scripts dont usually seem to go over well
on this site.
}


Possibly Related Threads…
Thread Author Replies Views Last Post
  Battle Trophies GoldenShadow 0 2,557 09-07-2006, 01:00 PM
Last Post: GoldenShadow
  Obtain Experience as You Battle Tsunokiette 0 2,119 06-28-2006, 01:00 PM
Last Post: Tsunokiette
  Change Cursor with differend commands in Battle Divinity 0 2,246 06-22-2006, 01:00 PM
Last Post: Divinity
  Battle Memory mudgolem 0 2,061 06-21-2006, 01:00 PM
Last Post: mudgolem
  Before Battle Switch Sheol 0 2,311 04-20-2006, 01:00 PM
Last Post: Sheol
  Random Character Generator SephirothSpawn 0 2,167 03-20-2006, 01:00 PM
Last Post: SephirothSpawn
  After Battle Changes 1.1 Sheol 0 2,172 02-07-2006, 01:00 PM
Last Post: Sheol
  New Battle System V1.5 (Added Side View) Guedez 0 2,467 01-12-2006, 01:00 PM
Last Post: Guedez
  Little Battle Edit Darkness Seraph 0 1,811 12-26-2005, 01:00 PM
Last Post: Darkness Seraph
  Battle Event List & Pre-Battle Troop Setup SephirothSpawn 0 2,500 12-25-2005, 01:00 PM
Last Post: SephirothSpawn



Users browsing this thread: