Good Moaning Tools > Drive the Voice Huds remotely
Starting from version 5.0, Voice Huds can be driven remotely. This means that you can send some commands from your own scripts/objects to users who wear a Voice Hud.
You send a command to the user wearing the Voice Hud with llRegionSayTo on channel 1482784364.
// Triggers the moan level 3 mode for the user whose UUID is 199dd84a-2536-cdc2-426c-df71adfb729a
llRegionSayTo("199dd84a-2536-cdc2-426c-df71adfb729a", 1482784364, "V_3");
Not any object can drive any Hud of any user. One of the following conditions must be fulfilled:
V_SHUT_UP
Modes 0 to 6 match the colored buttons blue to red in the Voice Hud:
V_0
V_1
V_2
V_3
V_4
V_5
V_6
Special modes:
V_SUCK // Please note that this one will trigger "Suck" for Female Huds and "Oral" for Male Huds
V_THROAT
V_GAG
V_PAINFUL
You can change the speed at which moans are triggerred. To do so, just define the interval between 2 moans:
// Moans will be separated by a 3 seconds intervals:
V_5/INT=3
// Moans will be separated by a 0 second interval, which means it will go super fast:
V_THROAT/INT=0
Each Hud contain 31 sexy sentences. You can trigger them by their number:
// Triggers sexy sentence number 20, which is "I love being your fucktoy" in Female Huds and "Damn you’re so tight!" in Male Huds.
V_SAY/SAY=20
By default, each 30 or 40 moans, the HUD automatically triggers a saying. The user can disable this feature by unchecking the "Words" checkbox in their Hud. But you can also disable this automatic insertion of sayings by adding the option INSERT_SAY=FALSE as an option of a command. For example:
V_5/INSERT_SAY=FALSE
V_SLAP // triggers the sound of a slap
V_SHOUT // triggers a shout
V_SLAP_SHOUT // triggers the sound of a slap followed by a shout
The Voice Huds can play these background noises:
For changing mode:
N_SWITCH/NOISE=Springs
To trigger the noises at a given BPM (Beats per minute):
N/BPM=100
If you set a BPM less than 60, it will just provide a background slow noise for Springs and Water, and nothing for the other modes.
Maximum allowed value for BPM is 240. Greater values will be replaced by 240.
To stop the noise:
N_STOP
Please be careful with the volume. In my opinion, this should be a user choice, not your choice, and i think that in most cases you should not change remotely the volume of the Huds from your script. That said, if you really want to do it:
// To change the volume of the moans:
V_VOLUME/VOLUME=0.5
// To change the volume of the noises:
N_VOLUME/VOLUME=0.5
// Possible values for volume are 0.2, 0.5 and 1.