Sign in to follow this  
Followers 0
Sampi

Random battle music

5 posts in this topic

Poner:
ir a Scene_Map, en la linea 172 veras:

CODE

$game_system.bgm_play($game_system.battle_bgm)

cambialo por esto:
CODE

#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  



Otros
Para hacer un jefe pon antes de la batalla esto
CODE
$boss=1

Para hacer un jefe final
antes de la batalla pon esto
CODE
$boss=2
0

Share this post


Link to post
Share on other sites
interesante script ya lo habia hecho a base de eventos pero esta muy bueno xD
0

Share this post


Link to post
Share on other sites
solo una cosa, no me quedo claro todo eso de los jefes finales, alguien me ayuda??
0

Share this post


Link to post
Share on other sites
Simplemente llama a script antes de la batalla poniendo $boss=1 si es un jefe 'nomal' y $boss=2 si es un jefe final.
0

Share this post


Link to post
Share on other sites
ya lo comprendi, es que lo tenia mal, fallo mio, como siempre preguntando

bueno ya lo he resuelto todo excepto lo de el bestiario.......no suma veces derrotado impresionado.gif bueno este post no es el adecuado cheesy.gif
0

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0