Results 1 to 7 of 7

Thread: whats wrong..

  1. #1
    Join Date
    Apr 2007
    Posts
    169
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default whats wrong..

    heres part from my new script wich buys normal logs from lumby general store, and banks them in draynor bank. i cant make it work. all i wanna do is it to find that dam shop logo and walk in

    SCAR Code:
    procedure LoadBmps;
    begin
       shop := BitmapFromString(20, 20, 'z78DAED95CB0E84200C457F09' +
           'CBB3CB22F0FF9F34C6CBA284998933EACE9ADC18941EFA008C79E' +
           'C832D5F9FDB585932E5C4C2C4834AE022D7AEA1B3920939A4509D' +
           '58E389D824AD411C2D055FA54A9478823E1277CFECD2165C29C59' +
           '7DC526DCD41116F4C3EDB0C3AE6FE4C57598D39DAC833572BFE04' +
           'F14FAE220EF11235D37CA04AD433BCBFF771645BFDA33D1CA24FD' +
           'CBEFEB879CD6975EB225050A0B1D96D261423E8B733DCBEFE9D3B' +
           'A8F7B4088B5B0D41353D9AC0A1FEC74565DF1027EE4044D4BF565' +
           '9EFD3BD8B90D5DBB9131D9D7C9CABEB7B661FC1432ADE59ABB922' +
           '4E2EA9EC01BA3E197457A3F72E207E3D9FE7537A60DD7C47DC7E1' +
           'F3D7691BD00DEB1E180');
    end;

    procedure FreeBmps;
    begin
      FreeBitmap(shop);
    end;



    procedure StoreWalk;
    begin
      Instore := false;
      PerfectNorth;
      HighestAngle;
      LoadBmps;
      if(FindDeformed(x, y, shop, 553, 6, 720, 160)) then
      begin
        Wait(100+random(10));
        Mouse(x, y, 1, 1, true);
        Status('Walking to General Store');
        Flag;
        FreeBmps;
        InStore := true;
        Status('We are in the store!');
      end else
      begin
        Status('Store Bitmap not found...');
        killscript(0);
      end;
    end;
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

    http://www.fenjer.com/adnan/SRL/20/33/BucketX.png

    http://www.fenjer.com/adnan/SRLStats/742.png

  2. #2
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    FindSymbol(x, y, 'shop');

    Loop it and lower symbolaccuracy (default = .8) until the symbol is found
    Interested in C# and Electrical Engineering? This might interest you.

  3. #3
    Join Date
    Apr 2007
    Posts
    169
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default ..

    i cant make find symbol work, could you help and show how to attach it there properly

    anyway thats much better cos those bitmaps lag ALOT
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

    http://www.fenjer.com/adnan/SRL/20/33/BucketX.png

    http://www.fenjer.com/adnan/SRLStats/742.png

  4. #4
    Join Date
    Apr 2007
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    under
    SCAR Code:
    program
    put this:
    SCAR Code:
    {.include SRL/SRL.scar}
    And just put this in your script if you want it to look for the symbol: [scar]FindSymbol(x, y, 'shop'); On the place where now is 'shop' you must find the correct word of the shop your looking for. Not 'shop' but the code for the thing your looking for. The tannersicon should be:
    SCAR Code:
    FindSymbol(x, y, 'tanner');

  5. #5
    Join Date
    Jan 2007
    Posts
    513
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Jagex updated the Shop-Symbols, so FindSymbol(x, y, 'Shop'); wil not work for now.. Try to make a bitmap from the shop symbol, and make it find that bitmap insteed of the Shop Symbol..

    Btw, why do you want to bank in draynor of there is a bank in lumby castle? ..

    @ Fearlesssss -> Shop is the correct name You can also use Store ..
    Srl simply rocks.

  6. #6
    Join Date
    Apr 2007
    Location
    Finland
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  7. #7
    Join Date
    Jan 2007
    Location
    Tennessee
    Posts
    642
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I had a problem with FindSymbol. I just set symbol accuracy in the script and then it found it. Like this- SymbolAccuracy:= .8;

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [PHP] whats wrong with this.
    By XcanadamanX in forum General
    Replies: 14
    Last Post: 01-21-2008, 11:40 PM
  2. Whats Wrong???
    By bilbobaggins in forum OSR Help
    Replies: 12
    Last Post: 04-10-2007, 10:05 AM
  3. Replies: 8
    Last Post: 03-23-2007, 04:20 PM
  4. Can someone tell me whats wrong with this?
    By Hey321 in forum OSR Help
    Replies: 5
    Last Post: 12-17-2006, 09:49 PM

Posting Permissions

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