Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23
  1. #11
    Join Date
    Jan 2007
    Location
    West Yorkshire
    Posts
    384
    Tokens
    0

    Default

    Seems I cant edit my last post.

    Anyway, I've sort've tested something I coded on this now:

    It now fades in and is compact at startup.

    When you click Grab! the window expands to reveal the sprite codes in a list box.

    Download here: http://iat.awardspace.com/hsg.html#downloads

    Now time to go in the bath.
    Last edited by ZAG; 31-01-2007 at 08:57 PM.

    “two players, two sides.
    one is light, one is dark.”
    - John Locke

  2. #12
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    Nice. REP+
    James


    Connected to reality through a proxy server.

  3. #13
    Join Date
    Jan 2007
    Location
    West Yorkshire
    Posts
    384
    Tokens
    0

    Default

    Thanks.

    It seems a bit plain to me now; any of you got any ideas?

    “two players, two sides.
    one is light, one is dark.”
    - John Locke

  4. #14
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    Can you link me to the VB6 download please, is it free ?
    James


    Connected to reality through a proxy server.

  5. #15
    Join Date
    Jan 2007
    Location
    West Yorkshire
    Posts
    384
    Tokens
    0

    Default

    Yes, its free.

    http://iat.awardspace.com/?page=hsg

    The downloads are at the bottom.

    “two players, two sides.
    one is light, one is dark.”
    - John Locke

  6. #16
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    I meant so i can make my own programmes, lol.
    James


    Connected to reality through a proxy server.

  7. #17
    Join Date
    Jan 2007
    Location
    West Yorkshire
    Posts
    384
    Tokens
    0

    Default

    Oh, VB6 is not free.

    But Visual Basic 2005 is.

    http://msdn.microsoft.com/vstudio/express/vb/

    “two players, two sides.
    one is light, one is dark.”
    - John Locke

  8. #18
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    Ty, i'd rep but... already did
    James


    Connected to reality through a proxy server.

  9. #19
    Join Date
    Oct 2006
    Posts
    119
    Tokens
    0

    Default

    It's alot easier in PHP... 8 lines to grab, sort, and display furni. It's 4 more lines to add other stuff. You just use ctrl-f to search for things, et voila.

    http://www.yodaofdarkness.com/et2.php

    PHP Code:
    <?php
    $lines 
    file('http://www.habbohotel.com/gamedata/external?id=external_texts');
    sort($lines);
    foreach (
    $lines as $line_num => $line) {
        if(
    substr($line05) == "furni")
            echo 
    $line "<br />";
    }
    ?>
    and it works with all type of things, all you change is the if(substr()) line to whatever you want. If you want to add posters after it, add
    PHP Code:
    foreach ($lines as $line_num => $line) {
        if(
    substr($line06) == "poster")
            echo 
    $line "<br />";

    before the ?>
    Last edited by Voldemort; 03-02-2007 at 12:08 AM.

  10. #20
    Join Date
    Oct 2005
    Location
    Melbourne, Australia
    Posts
    7,554
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Voldemort View Post
    It's alot easier in PHP... 8 lines to grab, sort, and display furni. It's 4 more lines to add other stuff. You just use ctrl-f to search for things, et voila.

    http://www.yodaofdarkness.com/et2.php

    PHP Code:
    <?php
    $lines 
    file('http://www.habbohotel.com/gamedata/external?id=external_texts');
    sort($lines);
    foreach (
    $lines as $line_num => $line) {
        if(
    substr($line05) == "furni")
            echo 
    $line "<br />";
    }
    ?>
    and it works with all type of things, all you change is the if(substr()) line to whatever you want. If you want to add posters after it, add
    PHP Code:
    foreach ($lines as $line_num => $line) {
        if(
    substr($line06) == "poster")
            echo 
    $line "<br />";

    before the ?>
    i dont understand any of that.. maybe you could explain a bit ?

Page 2 of 3 FirstFirst 123 LastLast

Posting Permissions

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