I made this quickly
PHP Code:
//#CLIENTSIDE
function onCreated() {
client.blah = 0;
onTimeOut();
}
function onTimeOut() {
client.blah = timevar2;
player.chat = client.blah;
setTimer(0.05);
}
But, I can't seem to get it down to 0...
Edit:
I can't get on Graal but would this work.
PHP Code:
//#CLIENTSIDE
function onCreated() {
client.timestart = client.blah;
onTimeOut();
}
function onTimeOut() {
client.blah = timevar2;
player.chat = client.blah -= client.timestart;
setTimer(0.05);
}