Frictional Games Forum (read-only)

Full Version: How do I use the phonograph?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I actually have 2 questions but the 1st is the most important:

1. How do I play sound using the phonograph?
2. Can someone help me find the sound file you first hear when waking up in the cell?

("Bienvenue, you are now listening to the sound of my disembodied voice. It will serve you no purpose to look for me, for this is a voice from the past.

I bid you welcome to my Cabinet of Perturbation. it is my study of the human psyche - specifically yours. A set of recordings have been prepared to chaperone you through the chambers ahead.

There are a few parts to this study and it is up to you - not only to pass, but figure out what elements are important. Please go on, move into the next chamber. Just remember they can all be saved, there is always a way.")
SetWheelStuckState(string& asName, int alState, bool abEffects);
Makes a prop\wheel\lever stuck in a certain state.

asName - internal name
alState - 0 = not stuck, 1 = at max, -1 = at min
abEffects - use effects
void abEffects
(string& asName, int alState, bool abEffects);

{
PlaySoundATEntity("", "sound.snt", "phonograph", 1, false);
or you can use= PlayGuiSound("sound.snt", 50.0f);
}