well Googleit on habboforum.com has one in the webdesign section But...
Habbo forum is down :S
Printable View
well Googleit on habboforum.com has one in the webdesign section But...
Habbo forum is down :S
The easiest way to do this would probably to just have a JavaScript which keeps opening a file and alerts if the file says something (then keeps checking for changes).
Code:<script type="text/JavaScript">
<!-- Begin
var previous;
if(navigator.appName == "Microsoft Internet Explorer") {
type = new ActiveXObject("Microsoft.XMLHTTP");
} else {
type = new XMLHttpRequest();
}
loadAlert();
function loadAlert(){
type.open('GET', 'alert.txt', true);
type.onreadystatechange = displayData;
type.send();
}
function displayData(){
if (type.readyState == 4) {
if(type.responseText != '' || type.responseText == previous_message) {
alert(type.responseText);
previous = type.responseText;
setTimeout('time_increase()', 3500);
}
}
//-->
</script>
Nets knows everything -.-
just have the dj says bit refresh every 30 seconds or so. That should be alot easier and less hassle :)
Dont have a box for dj says <3