Jump to content

Search the Community

Showing results for tags 'clock'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News
    • News
    • Development Announcements
    • Official TruckersMP Events
  • Information & Support
    • TruckersMP Rules
    • Guides
    • Help
    • Suggestions
    • Recruitment
  • Community
    • Discussion
    • Q&A
    • Hot Topic
    • VTC System
    • Event System
    • Discord
    • Developer Portal
    • Unofficial tools
    • Media
  • International Community
    • Other Languages
  • Archive
    • Archive
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Location


Interests


Known languages


VTC Name


Twitch


Twitter


Facebook


World Of Trucks


YouTube

Found 2 results

  1. Не могли б ви встановити системний годинник біля радіо? Було б зручніше контролювати свій час.
  2. Hello there, i was working on a website wich displayed the game time. So i read that i should not make to many calls to the API. To prevent the abuse of the API i made my own system written in PHP wich works very well. I want to share my code for other web devs. (I couldnt found one on the forum) <?php header('content-type: application/json; charset=utf-8'); //Original 2015-19-10 19:28:23 +0000 The date on the Docs seems to be wrong :/ reverse coding of current api stamp in minutes give me this date $format = 'Y-d-m H:i:s e'; $date = DateTime::createFromFormat($format, "2015-19-10 19:28:23 +0000"); $unixStart = $date->format('U'); //Convert time to Minutes $gameTime = ((time() - $unixStart) / 60) * 6; //Convert time to Seconds $gameTimeSeconds = (((time() - $unixStart) * 6) - 3660); //Optionally use of Day Strings like the Navi ingame $day = date("w", $gameTimeSeconds); $days = array("Thu", "Fri", "Sat", "Sun", "Mon", "Tue", "Wed"); $timeString = $days[$day].". ".date("H:i", $gameTimeSeconds); $arr = array("timeString" => $timeString); echo json_encode($arr, JSON_UNESCAPED_UNICODE); ?> If someone found some errors or problems. Feel free to answer
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.