Results 1 to 5 of 5

Thread: Problems Finding symbol?

  1. #1
    Join Date
    Aug 2008
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Problems Finding symbol?

    im trying to write a script that will get the played from Fally west bank to the short cut just west but even with a SymbolAccuracy of 0.1 yet it still doesn't pick it up i have tried updating symbol.scar with the latest img of the shortcut symbol and still doesnt work?

    SCAR Code:
    SymbolAccuracy := 0.1;
    if (FindSymbol(x, y, 'short cut')) then
    begin
      Mouse(x, y, 1, 1, True);
      Writeln('Found the crumbling wall shortcut, Looking for action marker.......');
    end else Writeln('Could not find crumbling wall!!');
    SymbolAccuracy := 0.8;

    is there anyother way i can find the shortcut?

  2. #2
    Join Date
    Aug 2008
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    problem was sovled using "FindColorSpiralTolerance()"

    SCAR Code:
    if (FindColorSpiralTolerance(x, y, 6083864, MMX1, MMY1, MMX2, MMY2, 5)) then
      Mouse(x, y, 0, 0, True);

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

    Default

    Wrong. I think it's called 'shortcut' in symbol.scar, not 'short cut'.

  4. #4
    Join Date
    Mar 2007
    Posts
    3,042
    Mentioned
    1 Post(s)
    Quoted
    14 Post(s)

    Default

    Quote Originally Posted by TheVoiceInYourHead View Post
    Wrong. I think it's called 'shortcut' in symbol.scar, not 'short cut'.
    If you actually looked in Symbol.scar you'd see that it's 'short cut' and not 'shortcut'.

    Anyways, the symbol finding may not have been working because of a change within the symbol or color. Also, I'd suggest not using a SymbolAccuracy lower than 5.0, because you'll be finding just about every symbol in that case.
    :-)

  5. #5
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    OH. Sorry for the mistake.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Finding Tanner Symbol?
    By Sir_Oober in forum OSR Help
    Replies: 4
    Last Post: 01-26-2009, 11:26 AM
  2. [AGAIN] Symbol Problems
    By Twisted in forum OSR Help
    Replies: 4
    Last Post: 05-04-2008, 08:22 AM
  3. Symbol Problems
    By Twisted in forum OSR Help
    Replies: 5
    Last Post: 04-13-2008, 11:22 AM
  4. MM Symbol Finding..
    By Drakan in forum OSR Help
    Replies: 3
    Last Post: 02-09-2007, 01:16 AM

Posting Permissions

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