Announcement

Collapse
No announcement yet.

Wartune Weekly Maintenance 8/11 4:00 AM EDT

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • R2_Vera
    started a topic Wartune Weekly Maintenance 8/11 4:00 AM EDT

    Wartune Weekly Maintenance 8/11 4:00 AM EDT

    Wartune will be having a Maintenance on Thursday, the 11th of Aug. at 4:00 AM EDT(1:00 AM PDT, 9:00 AM GMT, and 4:00 PM GMT +8) for all servers.

    Maintenance is expected to take approximately 4 to 6 hours, but could be shorter or longer. Please keep an eye on this thread for any updates or changes.

    Please be aware that Astrals Captured, but not claimed or sold will be lost during maintenance. If you have Astrals left unclaimed, please claim them before maintenance starts. Please log out as well before the maintenance to avoid data loss. We'll make another announcement if the maintenance is extended due to unexpected issues. Thank you.

    Note: Considering the various bugs such as ranking/Hot Event resets and Dimensional War reward issues that may result due to the maintenance, we’ve prepared the following compensation for all servers involved:
    500,000 Gold
    500,000 Daru
    Extreme Stamina Potion x1
    Lvl. 2 Bonus EXP Scroll x1
    Double Honor Scroll x1
    Hennax50

    We apologize for any inconvenience this may cause and thank you for your support! See you all in-game!
    1. You may sign up for the 7th Cross-Server Guild Battle starting August 17th.

  • KyoyaDe
    replied
    Originally posted by Xharry005x View Post
    well both of us ave done what r2 has took mnths to figure out and still cant fix lol maybe we both should give our estimates into r2 games payment dept for our wages hahahaha
    lol

    I already work as a web-developer, so it must be a good offer from R2...

    Leave a comment:


  • KayaBlanche
    replied
    your html don't explain squat. try using simple terms...

    Leave a comment:


  • Xharry005x
    replied
    Originally posted by KyoyaDe View Post
    In respect to your code, I've improved it. It shows your local date and time + UTC date and time + EDT/EST date and time, formatted using your browser settings. And it's all in one single file .

    Put the following code into a file ending with '.html' (for example: wartune-times.html), open it in a text editor and replace the '**' with a [ATTACH=CONFIG]165076[/ATTACH] (right curly bracket). Finally open the file in your favorite modern browser.
    HTML Code:
    <!DOCTYPE html>
    <html>
    <head>
        <title>Display Date and Time in Javascript</title>
        <script type="text/javascript" src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
    </head>
    <body>
    <h1>Your Time: <small id="localDateTime"></small></h1>
    <h1>UTC/GMT: <small id="utcDateTime"></small></h1>
    <h1>EDT/EST Time: <small id="edtDateTime"></small></h1>
    <script type="text/javascript">
        (function(window, document) {
            var options = {
                weekday: 'long',
                hour:"2-digit",
                minute:"2-digit",
                second:"2-digit",
                year: 'numeric',
                month: '2-digit',
                day: '2-digit'
            **;
            var formatter = new Intl.DateTimeFormat(window.navigator.language, options);
            window.setInterval(function() {
                var localTime = new Date();
                var utcTime = new Date();
                var utcHours = localTime.getUTCHours() + (localTime.getTimezoneOffset() / 60);
                utcTime.setUTCHours(utcHours);
                var edtTime = new Date();
                edtTime.setUTCHours(utcHours - 4);
                document.getElementById('localDateTime').innerHTML = formatter.format(localTime);
                document.getElementById('utcDateTime').innerHTML = formatter.format(utcTime);
                document.getElementById('edtDateTime').innerHTML = formatter.format(edtTime);
            **, 100);
        **)(window, document);
    </script>
    </body>
    </html>

    well both of us ave done what r2 has took mnths to figure out and still cant fix lol maybe we both should give our estimates into r2 games payment dept for our wages hahahaha

    Leave a comment:


  • KyoyaDe
    replied
    Originally posted by Xharry005x View Post
    function date_time(id)
    {
    date = new Date;
    year = date.getFullYear();
    month = date.getMonth();
    months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'Jully', 'August', 'September', 'October', 'November', 'December');
    d = date.getDate();
    day = date.getDay();
    days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
    h = date.getHours();
    if(h<10)
    {
    h = "0"+h;
    **
    m = date.getMinutes();
    if(m<10)
    {
    m = "0"+m;
    **
    s = date.getSeconds();
    if(s<10)
    {
    s = "0"+s;
    **
    result = ''+days[day]+' '+months[month]+' '+d+' '+year+' '+h+':'+m+':'+s;
    document.getElementById(id).innerHTML = result;
    setTimeout('date_time("'+id+'");','1000');
    return true;

    code html

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Display Date and Time in Javascript</title>
    <script type="text/javascript" src="date_time.js"></script>
    </head>
    <body>
    <span id="date_time"></span>
    <script type="text/javascript">window.onload = date_time('date_time');</script>
    </body>
    </html>
    In respect to your code, I've improved it. It shows your local date and time + UTC date and time + EDT/EST date and time, formatted using your browser settings. And it's all in one single file .

    Put the following code into a file ending with '.html' (for example: wartune-times.html), open it in a text editor and replace the '**' with a Click image for larger version

Name:	right-curly-bracket.png
Views:	1
Size:	346 Bytes
ID:	1726127 (right curly bracket). Finally open the file in your favorite modern browser.
    HTML Code:
    <!DOCTYPE html>
    <html>
    <head>
        <title>Display Date and Time in Javascript</title>
        <script type="text/javascript" src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
    </head>
    <body>
    <h1>Your Time: <small id="localDateTime"></small></h1>
    <h1>UTC/GMT: <small id="utcDateTime"></small></h1>
    <h1>EDT/EST Time: <small id="edtDateTime"></small></h1>
    <script type="text/javascript">
        (function(window, document) {
            var options = {
                weekday: 'long',
                hour:"2-digit",
                minute:"2-digit",
                second:"2-digit",
                year: 'numeric',
                month: '2-digit',
                day: '2-digit'
            **;
            var formatter = new Intl.DateTimeFormat(window.navigator.language, options);
            window.setInterval(function() {
                var localTime = new Date();
                var utcTime = new Date();
                var utcHours = localTime.getUTCHours() + (localTime.getTimezoneOffset() / 60);
                utcTime.setUTCHours(utcHours);
                var edtTime = new Date();
                edtTime.setUTCHours(utcHours - 4);
                document.getElementById('localDateTime').innerHTML = formatter.format(localTime);
                document.getElementById('utcDateTime').innerHTML = formatter.format(utcTime);
                document.getElementById('edtDateTime').innerHTML = formatter.format(edtTime);
            **, 100);
        **)(window, document);
    </script>
    </body>
    </html>
    Last edited by KyoyaDe; 08-11-2016, 04:55 AM.

    Leave a comment:


  • laskar212
    replied
    time to slepp

    Leave a comment:


  • mucky2
    replied
    ooh ooh they are having current activities........................can't see them as they advertised......................have not solved 4 month issues with stuff/tickets/complaints I have had................same old..................guess they spend their time hacking into systems via these accounts...................I have had 3 attacks via Facearse in the last few days...........................glad it is a wonderland account.....................twats..................

    Leave a comment:


  • LadyLotte
    replied
    devs we luv you and the work you do

    Leave a comment:


  • apurva1234
    replied
    so what time will the servers be back on

    Leave a comment:


  • R212661039
    replied
    Servers will be down 4 - 8 hours? Could be longer or shorter? Now, what could POSSIBLY be wrong that maintenance will take that long?? Hmmmmmm...

    Leave a comment:


  • KayaBlanche
    replied
    Was enjoying getting home and doing devo and events. Then you all made a rukus here....

    Leave a comment:


  • Patchcross
    replied
    Only 50 minutes late - that will nerf a lot of things. Thanks!!!

    Leave a comment:


  • Beautyexitou
    replied
    We would like to hear short explanation why slowing down the MT? If needed I will send some cookies and Coffee (for opening these sleepy eyes)

    Leave a comment:


  • angeldust261
    replied
    So are we still having maintenance or not, as it is now 45 minutes late and we are still online. This means we may miss out on chaos wars if this does go down now. Your timer started and said there was 20 minutes before shutdown and that was an hour ago.

    Please inform us what is happening.

    Leave a comment:


  • Xharry005x
    replied
    its 9.16 a.m on kabam s26 euro server and no maintenance

    r2 must be waiting for the main man to check his watch as r2 clocks are all wrong

    Click image for larger version

Name:	time.png
Views:	1
Size:	395.7 KB
ID:	1726125

    ur a bit slow today r2 on maintenance any chance you all went clubbing last night and all got hangovers spending our cash lol

    eres the code for javascript for time date etc if u giuys need a bit of help with this

    function date_time(id)
    {
    date = new Date;
    year = date.getFullYear();
    month = date.getMonth();
    months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'Jully', 'August', 'September', 'October', 'November', 'December');
    d = date.getDate();
    day = date.getDay();
    days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
    h = date.getHours();
    if(h<10)
    {
    h = "0"+h;
    **
    m = date.getMinutes();
    if(m<10)
    {
    m = "0"+m;
    **
    s = date.getSeconds();
    if(s<10)
    {
    s = "0"+s;
    **
    result = ''+days[day]+' '+months[month]+' '+d+' '+year+' '+h+':'+m+':'+s;
    document.getElementById(id).innerHTML = result;
    setTimeout('date_time("'+id+'");','1000');
    return true;

    code html

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Display Date and Time in Javascript</title>
    <script type="text/javascript" src="date_time.js"></script>
    </head>
    <body>
    <span id="date_time"></span>
    <script type="text/javascript">window.onload = date_time('date_time');</script>
    </body>
    </html>
    Last edited by Xharry005x; 08-11-2016, 03:40 AM.

    Leave a comment:

Working...
X