Could someone help me? What is the meaning of these lines: "Even with a turkey that you know will fold, You may be stranded out in the cold". It's from a song "there's no business like show business"
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menufunction room_AfterFadeIn()
{
StartCutscene(eSkipESCOnly);
Wait(150);
cBlank1.Walk(296, 567, eBlock, eAnywhere);
Wait(50);
System.Volume = 50;
function sldMusic_OnChange(GUIControl *control)
{
// SetMusicMasterVolume(sldMusic.Value);
Game.SetAudioTypeVolume(eAudioTypeMusic, sldMusic.Value, eVolExistingAndFuture);
function sldMusic_OnChange(GUIControl *control)
{
SetMusicMasterVolume(sldMusic.Value);
}
function sldSound_OnChange(GUIControl *control)
{
SetSoundVolume(sldSound.Value);
}
function repeatedly_execute_always() {
if (IsKeyPressed(eKeySpace) && !IsGamePaused())
{
SetSkipSpeech(2);
gPause.Visible = true;
spaceIsHeldToPause=true;
}
else if (spaceIsHeldToPause && !IsKeyPressed(eKeySpace)) spaceIsHeldToPause=false;
else if (!spaceIsHeldToPause && IsKeyPressed(eKeySpace) && IsGamePaused()) spaceIsHeldToUnpause=true;
else if (spaceIsHeldToUnpause && !IsKeyPressed(eKeySpace) && IsGamePaused())
{
SetSkipSpeech(0);
gPause.Visible = false;
spaceIsHeldToUnpause=false;
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.096 seconds with 15 queries.