Can't find them so maybe there just aren't any, but are there any other AGS game exe parameters besides '--setup'?
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
// main global script file
int countdown;
function repeatedly_execute() {
if (countdown==0){
countdown = -1;
}}
export countdown;
function repeatedly_execute_always() {
if (countdown > 0) {
countdown--;
String buffer;
int mins = ((countdown / GetGameSpeed()) / 60) % 60;
int secs = (countdown / GetGameSpeed()) % 60;
Ltime.Text=String.Format(buffer, "%02d:%02d", mins, secs);
}}
// room script file
import int countdown;
//int countdown;
//bool countingDown;
function room_FirstLoad()
{
countdown=4800;//length in seconds*40
}
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.095 seconds with 14 queries.