mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-25 17:59:34 +00:00
34 lines
No EOL
953 B
JavaScript
34 lines
No EOL
953 B
JavaScript
// Chapter 4 - Intro Load
|
|
function C004_ArtClass_Intro_Load() {
|
|
|
|
// Time is always 9:15 on the intro, no timer
|
|
StopTimer(9.25 * 60 * 60 * 1000);
|
|
|
|
// Do not allow bondage when we begin
|
|
Common_BondageAllowed = false;
|
|
Common_SelfBondageAllowed = false;
|
|
|
|
}
|
|
|
|
// Chapter 4 - Intro Run
|
|
function C004_ArtClass_Intro_Run() {
|
|
|
|
// Paints the background
|
|
DrawImage(CurrentChapter + "/" + CurrentScreen + "/Background.jpg", 0, 0);
|
|
DrawPlayerTransition();
|
|
|
|
// Write the chapter introduction
|
|
DrawText(GetText("Intro1"), 450, 100, "White");
|
|
if (TextPhase >= 1) DrawText(GetText("Intro2"), 450, 200, "White");
|
|
if (TextPhase >= 2) DrawText(GetText("Intro3"), 450, 300, "White");
|
|
if (TextPhase >= 3) DrawText(GetText("Intro4"), 450, 400, "White");
|
|
if (TextPhase >= 4) DrawText(GetText("Intro5"), 450, 500, "White");
|
|
|
|
}
|
|
|
|
// Chapter 4 - Intro Click
|
|
function C004_ArtClass_Intro_Click() {
|
|
TextPhase++;
|
|
if (TextPhase >= 5)
|
|
SetScene(CurrentChapter, "Julia");
|
|
} |