Results 1 to 4 of 4

Thread: FindSymbol

  1. #1
    Join Date
    Dec 2011
    Location
    Switzerland
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default FindSymbol

    I need help with the FindSymbol function:

    What can i enter there?

    I thought something about that:

    procedure WalkToBob;
    var
    x, y: Integer;
    begin
    Wait(1000+RandomRange(200, 700));
    FindSymbol(x, y, 'axeshop');
    Mouse(x, y, 5, 5, true);
    end;

    --> Compiled successfully in 671 ms.

    But it doesent click anything, but there IS the axeshop-symbol on the minimap... need help^^

    edit: Wanted it to walk this way because with sps it also didn't click anything at all ;-/
    Last edited by The Banker; 12-13-2011 at 07:54 PM.

  2. #2
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Did you spell the Symbol correctly?
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  3. #3
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by The Banker View Post
    I need help with the FindSymbol function:

    What can i enter there?

    I thought something about that:

    procedure WalkToBob;
    var
    x, y: Integer;
    begin
    Wait(1000+RandomRange(200, 700));
    FindSymbol(x, y, 'axeshop');
    Mouse(x, y, 5, 5, true);
    end;

    --> Compiled successfully in 671 ms.

    But it doesent click anything, but there IS the axeshop-symbol on the minimap... need help^^

    edit: Wanted it to walk this way because with sps it also didn't click anything at all ;-/
    Simba Code:
    procedure WalkToBob;
    var
      X, Y: Integer;
    begin
      Wait(1000+RandomRange(200, 700));
      FindSymbol(x, y, 'axe shop');
      Mouse(X, Y, 5, 5, True);
    end;

    You just spelled axe shop wrong.

    ~Home

  4. #4
    Join Date
    Dec 2011
    Location
    Switzerland
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Home View Post
    Simba Code:
    procedure WalkToBob;
    var
      X, Y: Integer;
    begin
      Wait(1000+RandomRange(200, 700));
      FindSymbol(x, y, 'axe shop');
      Mouse(X, Y, 5, 5, True);
    end;

    You just spelled axe shop wrong.

    ~Home
    oh damn thank you :-)

    Is there a way i can look up what is accepted as entry?

    edit: Still doesen't click on the axe shop symbol(bob's axe shop in lumb)
    Last edited by The Banker; 12-13-2011 at 08:17 PM.

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
  •