Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15
  1. #11
    Join Date
    Aug 2005
    Location
    Tunbridge Wells, Kent
    Posts
    5,063
    Tokens
    1,624

    Latest Awards:

    Default

    well Googleit on habboforum.com has one in the webdesign section But...

    Habbo forum is down :S
    Never argue with an idiot, he'll drag you down to his level, and beat you with experience.

    Quote Originally Posted by Recursion
    *oh trust me
    *I would NEVER go ATi
    And 15 mins later...
    Sapphire ATI Radeon HD 5850 1024MB GDDR5 PCI-Express Graphics Card £195.73 1 £195.73
    *ordered.

  2. #12
    Join Date
    Aug 2004
    Location
    bristol
    Posts
    3,799
    Tokens
    0

    Latest Awards:

    Default

    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>
    kinda quit.

  3. #13
    Join Date
    Jul 2005
    Location
    Bristol
    Posts
    2,054
    Tokens
    -10

    Latest Awards:

    Default

    Nets knows everything -.-

  4. #14
    Join Date
    Dec 2004
    Posts
    7,327
    Tokens
    1,276
    Habbo
    ---MAD---

    Latest Awards:

    Default

    just have the dj says bit refresh every 30 seconds or so. That should be alot easier and less hassle
    ---MAD---

  5. #15
    Join Date
    Jul 2005
    Location
    Bristol
    Posts
    2,054
    Tokens
    -10

    Latest Awards:

    Default

    Dont have a box for dj says

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •