When I'm looking at the "My Games" page, the time remaining for each game is listed as "Tomorrow @ NaN:NaN am".
Does this happen for anybody else?
Moderator: Community Team
Porteiro wrote:When I'm looking at the "My Games" page, the time remaining for each game is listed as "Tomorrow @ NaN:NaN am".
Does this happen for anybody else?
iamkoolerthanu wrote:Ha fixed it
Went to manage user scripts, right clicked BoB, clicked show containing folder. Then clicked edit from there and then edited the 1 to a 2, now it works fine!
Thanks everyone!
rbelgrod wrote:when i click edit, it does nothing
ok, that worked great, now all is working ....thanks buddy your a genius
function updateMyGamesClock(elements) {
$(elements).each(function (){
var currentHTML = this.innerHTML,
time = currentHTML.split('<br>')[1].split(':'),.........................change this 1 to a 2
targetDate = new Date(),
secondsLeft = parseInt(time[2],10) + parseInt(time[1],10) * 60 + parseInt(time[0],10) * 60 * 60,
additionalClock = $(this).find('.additionalClock');
targetDate.setTime(targetDate.getTime() + (secondsLeft * 1000));
if (!additionalClock.exists()) {
additionalClock = $('<span class="additionalClock"></span>');
$(this).append('<br />').append(additionalClock);
}
additionalClock.html(getAdditionalClockInfo(targetDate));
Return to Conquer Club Discussion
Users browsing this forum: No registered users