Hello,
Recently got back into AGS for an adventure game about a band. Anyway that's not important, my character disappears when I make him change rooms just for the opening cinematic.
The code on the "FirstLoad" action is:
function room_FirstLoad()
{
SetBackgroundFrame(1);
cMike.LockView(3);
Display ("You have begun a quest.");
Display ("A quest to become the most listened to band");
Display ("You are Mike, the drummer of this band.");
Display ("Your band members are: Dave the vocalist, Arlen the bassist, and Orion the guitarist.");
Display ("Cool names eh?");
Display ("The story begins in your Appartment");
SetBackgroundFrame(0);
cMike.UnlockView();
cDave.ChangeRoom(1, 300, 395);
cDave.Walk (165, 250);
dIntroDialog.Start();
cDave.ChangeRoom (2);
}
He talks but he is not visible. His starting room was 0 but then I changed to 2 to see if it made any difference. He still is disappearing.
Recently got back into AGS for an adventure game about a band. Anyway that's not important, my character disappears when I make him change rooms just for the opening cinematic.
The code on the "FirstLoad" action is:
function room_FirstLoad()
{
SetBackgroundFrame(1);
cMike.LockView(3);
Display ("You have begun a quest.");
Display ("A quest to become the most listened to band");
Display ("You are Mike, the drummer of this band.");
Display ("Your band members are: Dave the vocalist, Arlen the bassist, and Orion the guitarist.");
Display ("Cool names eh?");
Display ("The story begins in your Appartment");
SetBackgroundFrame(0);
cMike.UnlockView();
cDave.ChangeRoom(1, 300, 395);
cDave.Walk (165, 250);
dIntroDialog.Start();
cDave.ChangeRoom (2);
}
He talks but he is not visible. His starting room was 0 but then I changed to 2 to see if it made any difference. He still is disappearing.