The RPG Maker Resource Kit

RMRK RPG Maker Creation => Requests => Script Request => Topic started by: Zylos on March 04, 2008, 01:57:35 PM

Title: Change system sounds with events? [RESOLVED]
Post by: Zylos on March 04, 2008, 01:57:35 PM
Simple question: How do I change system sounds with events?

For example, if I wanted to change the shop SE to a specific sound after talking to a character, how would I go about doing that?
Title: Re: Change system sounds with events?
Post by: modern algebra on March 04, 2008, 07:05:50 PM
Ya kind of can't as far as I know. I think you'd even have to rework the scripts a little bit to do it through scripts.
Title: Re: Change system sounds with events?
Post by: GasparXR on March 04, 2008, 10:17:28 PM
Quote from: modern algebra on March 04, 2008, 07:05:50 PM
Ya kind of can't as far as I know. I think you'd even have to rework the scripts a little bit to do it through events.

Fixed :P
Title: Re: Change system sounds with events?
Post by: modern algebra on March 04, 2008, 11:27:41 PM
No, I meant call scripts, as in, you'd need to change some stuff in the script editor before you could use call scripts to change things :P

What I meant was you'd have to make a game class to store all the variables for sound effects, aand you'd have to then overwrite the Sound module and make it play from your new game class instead of the data class. All in all, it's a fairly easy project.

EDIT::

Since I had some time, I decided to write the necessary script to allow for in-game modification of the System Sound Effects. Here it is:

http://rmrk.net/index.php/topic,25124.0.html

Tell me if you have any problems with it.