Five and a half hours into the game - nearly done - and it is a thing of beauty!
Congratulations!
Congratulations!
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
String RollCredits[5];
short Number;
int OrgPosition=500;
function room_Load()
{
gBox.Visible=false;
gGear.Visible=false;
Mouse.Visible=false;
aGreek.Play();
gCredits.Visible=true;
Number = 1;
RollCredits[Number]=String.Format("Design, Story, Scripting, & Graphics:[Cogliostro");
Number++;
RollCredits[Number]=String.Format("AGS Game Engine:[Chris Jones");
Number++;
RollCredits[Number]=String.Format("");
Number++;
RollCredits[Number]=String.Format("Thank you for playing!");
Number++;
RollCredits[Number]=String.Format("");
gCredits.Controls[0].X=0;
gCredits.Controls[0].Y=OrgPosition;
}
function room_AfterFadeIn()
{
int x=0;
while (x<Number) {
gCredits.Controls[0].AsLabel.Text=String.Format(RollCredits[x+1]);
gCredits.Controls[0].TweenPosition(0.75, 0, 200, eEaseInSineTween, eBlockTween);
Wait(10);
gCredits.Controls[0].TweenPosition(0.75, 0, -50, eEaseInSineTween, eBlockTween);
x++;
gCredits.Controls[0].Y=OrgPosition;
}
Wait(300);
RestartGame();
}
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.046 seconds with 13 queries.