Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Runescape Stats

  1. #1
    Join Date
    Dec 2006
    Location
    Northamptonshire, England.
    Posts
    1,303
    Tokens
    0

    Latest Awards:

    Default Runescape Stats

    How would i go about showing the stats of someones runescape account on my site.. so like www.domain.com/stats.php?rsname=Xiwl and it shows there hiscores like

    Attack 50
    Strength Not Ranked
    Defence 81
    Range 93
    HP 79
    Construction Not Ranked

    Etc. etc.

    Ty for all help.

  2. #2
    Join Date
    Dec 2006
    Posts
    115
    Tokens
    0

    Default

    using a complex php script


  3. #3
    Join Date
    Dec 2006
    Location
    Northamptonshire, England.
    Posts
    1,303
    Tokens
    0

    Latest Awards:

    Default

    Thanks for the help.. ;/

  4. #4
    Join Date
    Dec 2006
    Posts
    4
    Tokens
    0

    Default

    Quote Originally Posted by Xiwl View Post
    Thanks for the help.. ;/
    Lol..
    Erm.. You'd have to make a script and get the redirects from runescapes high scores..

    It would be hard to do.. But good luck in fining out

  5. #5
    Join Date
    Dec 2006
    Posts
    115
    Tokens
    0

    Default

    1. you'd need to know php - i guess im going to stop you there.

    it's complex - i know nothing about php but you'd have to drag the levels out of the highscores list on rs.com


  6. #6
    Join Date
    Dec 2006
    Location
    Northamptonshire, England.
    Posts
    1,303
    Tokens
    0

    Latest Awards:

    Default

    1. you'd need to know php - i guess im going to stop you there.

    I do know PHP...

    anyway i have this first.. obviously its nothing yet but its just an example of layout, just need to work out how to get the levels.

    PHP Code:
    <?

       $name 
    $_GET['user'];

    echo(
    "$name's Hi-Scores
    <tr>
        <td width=\"200\" height=\"16\">Attack</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Defence</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Strength</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Hitpoints</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Ranged</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Prayer</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Magic</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Cooking</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Woodcutting</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Fletching</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Fishing</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Firemaking</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Crafting</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Smithing</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Mining</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Herblore</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Agility</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Thieving</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <tr>
        <td width=\"200\" height=\"16\">Slayer</td>
        <td width=\"200\" height=\"16\">1</td>
    <tr>
      </tr>
        <td width=\"200\" height=\"16\">Farming</td>
        <td width=\"200\" height=\"16\">1</td>
    <tr>
      </tr>
        <td width=\"200\" height=\"16\">Runecraft</td>
        <td width=\"200\" height=\"16\">1</td>
    <tr>
      </tr>
        <td width=\"200\" height=\"16\">Hunter</td>
        <td width=\"200\" height=\"16\">1</td>
    <tr>
      </tr>
        <td width=\"200\" height=\"16\">Construction</td>
        <td width=\"200\" height=\"16\">1</td>
      </tr>
    <br><br></table><br><a href='index.php'>Back</a href>"
    );

       
    ?>

  7. #7
    Join Date
    Dec 2006
    Posts
    115
    Tokens
    0

    Default

    have you ever worked with a habbo imager? it's pretty much the same thing.

    dragging information out - have a look at the code for one of them and see how they do it then incorporate that into your code.


  8. #8
    Join Date
    Dec 2006
    Location
    Northamptonshire, England.
    Posts
    1,303
    Tokens
    0

    Latest Awards:

    Default

    Yeah i made a habbo immager before, but this is differant, i think it needs perl ;S

  9. #9
    Join Date
    Dec 2006
    Posts
    115
    Tokens
    0

    Default

    im unsure, i think it's all done via php as perl is a more complex version.

    it should be able to be done in php.


  10. #10
    Join Date
    Dec 2006
    Posts
    4
    Tokens
    0

    Default

    Just and also.. Habbo imagers are just an image..

    But runescape highscores would be more complicated coz it's a whole list of scrores and is a more bigger database to work around..

Page 1 of 2 12 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
  •