Main Menu
  • Welcome to The RPG Maker Resource Kit.

Specialized Criticals

Started by Mushu, June 20, 2011, 08:14:42 PM

0 Members and 1 Guest are viewing this topic.

Mushu

Specialized Criticals
06/20/11




Summary
Usually you can choose the sounds for most things in the system tab. Criticals just aren't the same if they don't have that extra kick, so being able to change the sound for a critical hit specifically would add to the effect.


Features Desired

  • Changing sound for criticals
  • Changing other aspects for criticals
  • Special animations for criticals

Mockups


Games its been in

  • these pictures are from the MMORPG Shaiya
  • many other games like Fire Emblem have special animations for criticals

What other scripts are you using?




Did you search?
Yes
Where did you search?

  • This forum

What did you search for?

  • sound effects
  • I went through every script anyways picking out what I wanted for my game

dricc

Have you tried another SSBS ?
I know that some of them can use special charsets .
You can use my scripts freely . but not for commercial use .
:ccbync:
Don't encrypt your game !!!
Want to give me credit ? Easy ,add me in your game :

Mushu

what is an ssbs and would it be able to change the sound of crits?

dricc

SBS ... the second S was a mistake :)
I don't know ... have you tried yanfly melody battle system ? i don't know if there is something for sounds but i am sure that this battle system can use more detailled charsets .
The side view battle system you are using is very basic .
You can use my scripts freely . but not for commercial use .
:ccbync:
Don't encrypt your game !!!
Want to give me credit ? Easy ,add me in your game :

Mushu

I tried finding that script but I can't, can you post it for me please? xD

pacdiggity

Unlikely; it has over 25000 lines of code.
You can, however, get the Yanfly Engine Melody (with the Battle System) here (courtesy of Modern Algebra).
it's like a metaphor or something i don't know

Mushu

wow thx! it's gonna take me a year to configure this to my game xD

Mushu

The Yanfly script has everything except the sound mod for the crits which is really the only thing I'm looking for xD

Mushu

*update* I found out how to add a sound for criticals but I don't know how to use an imported SE instead of a game system SE, does anyone know what I could put in the script to call it up? (technically it would play the system normal hit then the imported one but I wouldn't mind)


modern algebra

Did you just add that method into the Sound module? Because making a method and naming it relevantly won't actually play it at the desired event unless you call it there.

Anyway, in case you do know that and have called it, you just have to put the following line inside your method:


RPG::BGM.new ("Heavy_Anvil_Impact[1]").play


(assuming Heavy_Anvil_Impact[1] is the name of the SE in the folder)

Mushu

#10
IT WORKS!!!! its so coool O_O
does it go against copywright laws if I post a bought SE to share in a demo?

Mushu

Sorry, I dunno what happened but this doesn't seem to work anymore, or maybe it only worked when I switched it out in 'enemy_damage'. Can someone please try this out and see if it works for them? I'm not sure what changed or what I did wrong..
All I know is that the normal damage sound overrides the critical sound or something of that nature.
This is how I put it in the Modules>Sound
  def self.play_CriticalToEnemy
    RPG::SE.new ("Heavy_Anvil_Impact[1]", 100, 100).play
  end

  def self.play_CriticalToActor
    RPG::SE.new ("Heavy_Anvil_Impact[1]", 100, 100).play
  end