Jump to content

10 minute timer


alkku15

Recommended Posts

public void onStart(){
startTime = System.currentTimeMillis();
endTime = startTime + 600000;
}

public int onLoop(){
  if(endScript(){
     stop(true);
     }
}

private boolean endScript(){
  return System.currentTimeMillis() >= endTime;
}

get your startTime and endTime on the onstart, have a boolean for if currentTime is after endTime and then run a check in your onLoop for it that boolean is true

  • Like 2
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...