I've searched the forums and looked in various FAQs but couldn't find anything. How do you determine game length in AGS database? How many gameplay hours make a game "short" or "medium". Is this even fixed?
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
if (button == eMouseRight || button == eMouseWheelSouth){
mouse.SelectNextMode();
}
function hQUIT_AnyClick()
{
QuitGame(1);
}
function hLOAD_AnyClick()
{
//show_restore_game_dialog();
}
function room_Load()
{
gInventory.Visible = false;
gIconbar.Visible = false;
}
function hPLAY_AnyClick()
{
player.ChangeRoom(3, 121, 120);
player.FaceLocation(283, 92);
gInventory.Visible = true;
gIconbar.Visible = true;
}
function oBRANCH_UseInv()
{
if (player.ActiveInventory == iHANDSAW) {
player.Say("You'd have to use your stonger hand.");
}
if (player.ActiveInventory == iHANDSAWRAG) {
player.Say("Well, alright.");
player.Walk(123, 108, eBlock);
object[0].Visible=false;
player.AddInventory(iBRANCH);
}
else {
player.Say("I can't cut it with this.");
}
}
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.061 seconds with 16 queries.