Results 1 to 4 of 4

Thread: SS highscores grabber

  1. #1
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default SS highscores grabber

    Simba Code:
    var
      i:Integer;
      str:string;
      name = '';
      SkillsTSA:TStringArray;
    begin
      SkillsTSA := [
        'Attack', 'Defence', 'Strength', 'Hitpoints', 'Ranged',
        'Prayer', 'Magic', 'Cooking', 'Woodcutting', 'Fletching',
        'Fishing', 'Firemaking', 'Crafting', 'Smithing', 'Mining',
        'Herblore', 'Agility', 'Thieving', 'Slayer', 'Farming',
        'Runecrafting', 'Dungeoneering', 'Summoning'
      ];
      InputQuery('Highscores grabber','Enter username', name);
      str := GetPage('http://soulsplit.com/hs/index.php?name=' + name);
      ClearDebug;
      Writeln('========Highscores stats for ' + name + '========');
      for i := 0 to high(SkillsTSA) do
        Writeln(SkillsTSA[i] + ' ' + Between(SkillsTSA[i] + '</a></td><td>', '</td><td>',str));
    end.

    Was bored. Does not have a check to see if website is offline or not.

  2. #2
    Join Date
    Jun 2012
    Posts
    56
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    nice but if u have the client downloaded theres a built in program that lets u see the highscores already

  3. #3
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by sharkyscape View Post
    nice but if u have the client downloaded theres a built in program that lets u see the highscores already
    This script is like 5 months old before that was there

  4. #4
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by halodon123 View Post
    Nice addition to the existing grabbers - good that it's less hassle than opening a new tab
    this script doesn't even work anymore GTFO with your spam posts

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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