The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Countdown Timer

+4
Nera.
Sanket
shppero
Amel Nuhanovic
8 posters

Go down

In progress Countdown Timer

Post by Amel Nuhanovic Sat 11 Jun - 21:44

Like how topic title say i want create some custom Countdown Timer who will be automatic restarted every 4 hours. Its about some online game what i play and friends. There is war time every 4 hours started from at this time 01.00 05.00 10.00 14.00 18.00 22.00 Ok i know somewhere there where i start to create that i need to put there real time, from where all that start to work but all what i find at google its not about that, always there is showed years, month, days....and all. I need only hours, min. and second there what start from 04.00.00 countdown to 00.00.00 and again automatic start. In official page about this game you can see what i mean, there is that little green countdown timer called NEXT NATION WAR what i want in mine forum, here is link http://www.cabalonline.com/index.asp. Please help me with this...i show you in pictures how i imagine that...THANKS
countdown - Countdown Timer 1zyahi9
Amel Nuhanovic
Amel Nuhanovic
Forumember

Male Posts : 152
Reputation : 1
Language : Bosnian
Location : Bosnia and Herzegovina

Back to top Go down

In progress Good

Post by shppero Sun 12 Jun - 7:46

How do you do
avatar
shppero
New Member

Posts : 3
Reputation : 0
Language : vietnamese

Back to top Go down

In progress Re: Countdown Timer

Post by Amel Nuhanovic Sun 12 Jun - 15:10

Bump
Amel Nuhanovic
Amel Nuhanovic
Forumember

Male Posts : 152
Reputation : 1
Language : Bosnian
Location : Bosnia and Herzegovina

Back to top Go down

In progress Re: Countdown Timer

Post by Sanket Sun 12 Jun - 22:27

Why don't you google for a countdown timer, there are many sites which will provide you with the code.
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

In progress Re: Countdown Timer

Post by Amel Nuhanovic Mon 13 Jun - 7:15

I know this is stupid question and you listen this each day, again and again...but can you reply me some link about that PLEASE
Amel Nuhanovic
Amel Nuhanovic
Forumember

Male Posts : 152
Reputation : 1
Language : Bosnian
Location : Bosnia and Herzegovina

Back to top Go down

In progress Re: Countdown Timer

Post by Nera. Mon 13 Jun - 8:05

Hi,

Here you go Amele
http://countdown.onlineclock.net/generator/
Tried it, works like magic Smile
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: Countdown Timer

Post by Amel Nuhanovic Mon 13 Jun - 8:36

Nera respect for help like always, but its not that, i have tons links like that, its just not ok how i want---Jan try to create me perfect Countdown Timer, he tell me its something about jQuery & Javascript. Problem what confuse you about that timer maybe this is...That counter need to Countdown 04.00 hour and when he finish need to automatic again start, but important time for Countdown Timer is this...
01.00
05.00
10.00
14.00
18.00
22.00
At that time War start at game, about what is this all...
Now you know what i mean??? Very Happy
Amel Nuhanovic
Amel Nuhanovic
Forumember

Male Posts : 152
Reputation : 1
Language : Bosnian
Location : Bosnia and Herzegovina

Back to top Go down

In progress Re: Countdown Timer

Post by Amel Nuhanovic Fri 17 Jun - 21:48

bump

Its like guys you need to take medic each 4 hours, and you want to create Countdown Timer for that. Time for your medic is:

01.00 am
05.00 am
09.00 am
13.00 pm
17.00 pm
21.00 pm

Ok this timer need to start again automatic when he normal show you first time at 01.00 am and need to start to count to 05.00 am. This i want maybe i dont post right what i mean i try now to explain like with medication hahahaha, buddy tell me this is something about jQuery & Javascript, i hardly work with css I have no idea of this...Now i think you know what i mean and i wait some smart head... countdown - Countdown Timer 553985505


Last edited by Amel Nuhanovic on Sat 18 Jun - 8:45; edited 1 time in total
Amel Nuhanovic
Amel Nuhanovic
Forumember

Male Posts : 152
Reputation : 1
Language : Bosnian
Location : Bosnia and Herzegovina

Back to top Go down

In progress Re: Countdown Timer

Post by LGforum Sat 18 Jun - 7:15

you do know that your times aren't 4 hours apart...

5:00 - 10:00 = 5 hours...
LGforum
LGforum
Hyperactive

Male Posts : 2265
Reputation : 264
Language : English
Location : UK

Back to top Go down

In progress Re: Countdown Timer

Post by Amel Nuhanovic Sat 18 Jun - 8:44

hahahahah i make wrong sorry but again you know what i mean...right???
Amel Nuhanovic
Amel Nuhanovic
Forumember

Male Posts : 152
Reputation : 1
Language : Bosnian
Location : Bosnia and Herzegovina

Back to top Go down

In progress Re: Countdown Timer

Post by Amel Nuhanovic Mon 20 Jun - 7:21

Anyone?????
Amel Nuhanovic
Amel Nuhanovic
Forumember

Male Posts : 152
Reputation : 1
Language : Bosnian
Location : Bosnia and Herzegovina

Back to top Go down

In progress Re: Countdown Timer

Post by Irian Mon 20 Jun - 11:31

did you remove it?
I can't find it Sad

bye
Irian
Irian
Forumember

Male Posts : 661
Reputation : 18
Language : English, Français, Spagnol, Latin, ecc.
Location : New york

http://www.puregroups.co.cc

Back to top Go down

In progress Re: Countdown Timer

Post by Amel Nuhanovic Mon 20 Jun - 14:44

What i remove that timer?? Nou i dont make, because you see, no one dont know how to make that, i think its easy for someone, for me its to hard, if anyone know how to make this please PM or anything, this is really important for me and other guys at forum. Each day i watch here and wait for reply )))))
Amel Nuhanovic
Amel Nuhanovic
Forumember

Male Posts : 152
Reputation : 1
Language : Bosnian
Location : Bosnia and Herzegovina

Back to top Go down

In progress Re: Countdown Timer

Post by Mike Mon 20 Jun - 15:10

Code:
<script type = "text/javascript">

var timeInSecs;
var ticker;

function startTimer(secs) {
timeInSecs = parseInt(secs);
ticker = setInterval("tick()", 1000);
}

function tick( ) {
var secs = timeInSecs;
if (secs > 0) {
timeInSecs--;
}
else {
clearInterval(ticker);
startTimer(14400);  // start again
}

var hours= Math.floor(secs/3600);
secs %= 3600;
var mins = Math.floor(secs/60);
secs %= 60;
var pretty = ( (hours < 10 ) ? "0" : "" ) + hours + ":" + ( (mins < 10) ? "0" : "" ) + mins + ":" + ( (secs < 10) ? "0" : "" ) + secs;
document.getElementById("countdown").innerHTML = pretty;
}

startTimer(14400);  // 4 hours in seconds

</script>

<span id="countdown" style="font-weight: bold;"></span>

Enjoy Very Happy
Mike
Mike
Hyperactive

Male Posts : 4255
Reputation : 471
Language : English, HTML, CSS
Location : Loveland, Colorado

Back to top Go down

In progress Re: Countdown Timer

Post by gamesave Tue 21 Jun - 23:17

were do u put the code?
gamesave
gamesave
Forumember

Male Posts : 99
Reputation : 2
Language : english
Location : ohio

http://gamesave.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum