Author Topic: ▇▇▇ Sound FX Tool/Weapon ▇▇▇  (Read 738 times)

I would absolutely love to have a tool that you can hold in your hands, and it would play a certain sound effect. For example, when you hold a "default_sword" in Blockland and you use it, it makes a sound. All Im asking for is the sound and not a model. In general, I just want a tool that you can hold in your hands that allows you to click down on it and it will play a sound. You can make it any sound you want, I'll just edit it to be a different sound if I get it. Thank you.
« Last Edit: January 30, 2015, 01:21:36 PM by blueeyesjt1 »

Hahaha I can imagine all the silly things you could do with this.

There are two events that you could use to do this.  First, there's the remote events (Event_Remote), which comes with a remote tool that you can use to trigger events when linked to a brick.  Next, there's an event that lets you play sound from the player—I believe it's Event_playSound.

Should be no more that two lines of events in all.

OnActivate → Self → SetRemoteLink [X]
OnRemoteTrigger → Player → playSound "whatever.wav"

Additionally, this will let you choose the sound in the server without having to edit the script.  Additionally, if you want to make use of Cmd events (Event_Command), and VCE, (Event_Variables, if you can find a good version), you can make presets and switch them with chat commands.  I can explain that as well if you like.

All these Add-Ons can be found on the RTB Archives.
« Last Edit: January 30, 2015, 03:11:54 PM by SWAT One »