Results 1 to 3 of 3

Thread: Ge price grabbing procedure/function

  1. #1
    Join Date
    May 2008
    Location
    Oregon, USA
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Ge price grabbing procedure/function

    Fixed
    Last edited by spicynachos2; 08-27-2009 at 05:19 AM.

  2. #2
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    You could use the system in my GE Price Grabber Script, make it find the first index then Result it.

  3. #3
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    SCAR Code:
    Procedure GetPrice(ItemId: String; var ItemName: String);
    begin
      Page := Getpage('http://itemdb-rs.runescape.com/viewitem.ws?obj=' + (ItemId));
      ItemName := Between('Market price:</b> ', '<', lol);
      Words := [#13, #10, ',', ' '];
      For I := 0 To high(words) do
      ItemName := Replace(ItemName, words[i], '');
      WriteLn('Your Income Is: ' + (ItemName))
    end;

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
  •