Sassy videos and two video game concept bars. Although the one in Melbourne has the worst licence and closes at 11pm... and lacks a bit of character...
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
// room script file
int myIntroCounter;
function myStartGame()
{
//re-enable mouse cursor
Mouse.Visible = true;
//START GAME: go to starting game room.
cChristianSpear.ChangeRoom(1, 60, 348);
}
function room_RepExec()
{
if (IsTimerExpired(1)) {
//increment cutscene
myIntroCounter++;
if (myIntroCounter == 2)
{
ShowTextCentered("A game...");
SetTimer(1, 80);
}
else if (myIntroCounter ==3)
{
ShowTextCentered("This is the prologue cutscene placeholder", 7);
SetTimer(1, 80);
}
else
{
myStartGame();
}
}
}
function room_Load()
{
//Play room music.
aMusic1.Play(eAudioPriorityHigh, eRepeat);
//Hide mouse for intro
Mouse.Visible = false;
}
function room_AfterFadeIn()
{
//setup frame number
myIntroCounter = 1;
//START CUTSCENE SCRIPT - rest is run in rep exec.
ShowTextCentered("A Time Apart From Time", 2016);
SetTimer(1, 80);
}
function on_mouse_click(MouseButton button) {
if (button == eMouseLeft){
//myClickListener = true;
Display("A click!");
//NEED TO ADD CONFIRMATION MESSAGE
//myStartGame();
}
}
function foo()
{
alert('foo');
}
var a = 'foo';
window[a]();
// room script file
function room_Load()
{
//Play room music.
aMusic1.Play(eAudioPriorityHigh, eRepeat);
//Hide mouse cursor for intro
Mouse.Visible = false;
}
function myStartGame()
{
//re-enable mouse cursor
Mouse.Visible = true;
//START GAME: go to starting game room.
cChristianSpear.ChangeRoom(1, 60, 348);
}
function on_mouse_click(MouseButton button) {
Display("A click!");
//NEED TO ADD A CONFIRMATION MESSAGE HERE
myStartGame();
}
}
function room_AfterFadeIn()
{
ShowTextCentered("Game Title", 2016);
Wait(80);
ShowTextCentered("A subtitle placeholder...");
Wait(80);
ShowTextCentered("This is the prologue cutscene placeholder", 7);
Wait(80);
ShowTextCentered("In this scene we'll see the FIRST dream sequence.", 7);
Wait(80);
//Start the game
myStartGame();
}
Quote from: Ehkber on Sun 15/01/2012 05:15:55
An in-game hint giving system might be a nice addition.
I only suggest because I bought the Indieroyale bundle and asking you for hints on MSN has become a slightly undignified option in the last few years.
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.082 seconds with 13 queries.