Remember Real time timer

Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.

A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.

Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!

Clickteam.
  • Hi, I am trying to make something where a user can only spin a slot machine once every 24 hours or every day. Is it possible to make MMF2 wait 24 hours in real time or at least a day on IOS if so how?
    It's kind of like clash of clans where you have to wait to upgrade your base in real time.
    I hope someone knows how I can do this because I cant figure it out on IOS.
    Thanks in Advance!

    Check Out my Awesome Apps named Snow Drop and Friendly Flappers OUT NOW for Apple and Android!!! ;D

  • I found this: Please login to see this link.
    Where ProdigyX recomends to use the GET object to download a file, rather than just the data, and then after that one-time download, you can check the time of file modification/time of original time.
    This could work but the problem is I don't get how to do this with the GET object I have never used that object before but could this work?

    Check Out my Awesome Apps named Snow Drop and Friendly Flappers OUT NOW for Apple and Android!!! ;D

  • if you have your own website, put a php file with this in it

    <?php
    /**
    * Converts current time for given timezone (considering DST)
    * to 14-digit UTC timestamp (YYYYMMDDHHMMSS)
    *
    * DateTime requires PHP >= 5.2
    *
    * @param $str_user_timezone
    * @param string $str_server_timezone
    * @param string $str_server_dateformat
    * @return string
    */
    function now($str_user_timezone,
    $str_server_timezone = CONST_SERVER_TIMEZONE,
    $str_server_dateformat = CONST_SERVER_DATEFORMAT) {

    // set timezone to user timezone
    date_default_timezone_set($str_user_timezone);

    $date = new DateTime('now');
    $date->setTimezone(new DateTimeZone($str_server_timezone));
    $str_server_now = $date->format($str_server_dateformat);

    // return timezone to server default
    date_default_timezone_set($str_server_timezone);

    return $str_server_now;
    }
    ?>

    and then pull the time/date from your server with the get command and use like Get URL "Please login to see this link."

    and with Get Post yourtime = "str_server_now" (yourtime could be a string)

    That should do the trick

  • Okay, Thanks Perry! Would On Get Timeout condition be the best way to detect that the phone is not connected to the internet?

    Check Out my Awesome Apps named Snow Drop and Friendly Flappers OUT NOW for Apple and Android!!! ;D

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!