Escape from Delirium it is!:-D
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 Menu
function room_AfterFadeIn()
{
Wait(40);
int trans3 = object[6].Transparency;
while (trans3 < 100) {
trans3++;
object[6].Transparency = trans3;
Wait(1);
object[6].Clickable = false;
}
function room_Load()
{
gBlack.Visible = true;
FadeOut(64);
mouse.Mode = eModePointer;
Mouse.DisableMode(eModeInteract);
Mouse.DisableMode(eModeLookat);
mouse.DisableMode(eModeTalkto);
mouse.DisableMode(eModeWait);
mouse.DisableMode(eModeWalkto);
gInventory.Visible = false;
gIconbar.Visible = false;
object[3].Clickable = false;
object[4].Clickable = false;
object[5].Clickable = false;
}
function room_AfterFadeIn()
{
gBlack.Visible = false;
FadeIn(1);
mouse.Visible = false;
Wait(40);
object[3].Visible = true;
int trans = object[3].Transparency;
while (trans < 100) {
trans += 5;
object[3].Transparency = 100-trans;
Wait(1);
}
object[4].Visible = true;
int trans1 = object[4].Transparency;
while (trans1 < 100) {
trans1 += 5;
object[4].Transparency = 100-trans1;
Wait(1);
}
object[5].Visible = true;
int trans2 = object[5].Transparency;
while (trans2 < 100) {
trans2 += 5;
object[5].Transparency = 100-trans2;
Wait(1);
}
mouse.Visible = true;
}
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;
}
Quote
1. Monkey Island 1
2. Monkey Island 2: LeChuck's Revenge
3. Maniac Mansion
4. Day of the Tentacle
5. Indiana Jones and the Last Crusade (Adventure version)
6. Indiana Jones and the Fate of Atlantis
7. Zak McKracken and the Alien Mindbenders
8. The Dig
9. Full Throttle
10. Sam and Max Hit the Road
11. Star Wars: Dark Forces
13. Star Wars: Jedi Knight
14. Star Wars: Jedi Knight - Mysteries of the Sith
15. Grim Fandango
16. Star Wars: Shadows of the Empire
17. Star Wars: TIE Fighter
18. Star Wars: X-Wing
19. Super Star Wars
20. Super Star Wars: The Empire Strikes Back
21. Super Star Wars: The Return of the Jedi
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.153 seconds with 15 queries.