theo1996 Newbie cheater
Reputation: 0
Joined: 27 Dec 2013 Posts: 15
|
Posted: Thu Nov 20, 2014 4:46 pm Post subject: Javascript timer [date()] does not stop with speedhack. |
|
|
So i have this quiz that runs on javascript,when i stop time with speedhack it is still counting in the background.
and how can i make it stop completely?
is it server or client sided?
It uses the date() function how can i stop it?
Example
Quote: |
Code: | <form name="Tick">
<input type="text" size="11" name="Clock">
</form>
<script>
<!--
/*
By George Chiang (WA's JavaScript tutorial)
*/
function show(){
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM"
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
document.Tick.Clock.value=hours+":"+minutes+":"
+seconds+" "+dn
setTimeout("show()",1000)
}
show()
//-->
</script> | |
|
|