Results 1 to 12 of 12

Thread: lil help?

  1. #1
    Join Date
    Oct 2006
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    lil help?

    ok, since this is like....my first go at Autoing...im alil bit clueless....i ended up getting 2 account banned for autoing...in which i didnt do twice...so i figured id auto now. i figured most of which on my own...but this one stumped me:
    Line 933: [Error] (5712:11): Unknown identifier 'FindColorCircleD' in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Color.scar

    knowing some of u been SCARin since it came out, im hopin its something simple, proving how not smart i truely am in this art.


    btw....this is the section lookin thing its in:
    {************************************************* ******************************
    function FindColorCircle(var x, y: Integer; color, radius, MidPointx, MidPointy: Integer): Boolean;
    By: Freddy1990
    Description: Searches for a color within a circle.
    ************************************************** *****************************}

    function FindColorCircle(var x, y: Integer; color, radius, MidPointx, MidPointy: Integer): Boolean;
    begin
    Result := FindColorCircleD(x, y, color, radius, MidPointx, MidPointy, 0);
    end;

    if that helps any.....

  2. #2
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Good question. I can't find FindColorCircleD except called in 2 functions. Until you find the mysterious missing function, all I can think of is find alternatives to the functions that use it. Hopefully Freddy will see this.

  3. #3
    Join Date
    Feb 2006
    Location
    L.A, USA
    Posts
    1,632
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Look in "place inside plugins" folder. You'll find that there are 4 .dll's you need to move those to your plugins folder.

  4. #4
    Join Date
    Feb 2006
    Location
    L.A, USA
    Posts
    1,632
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    The edit button isn't working for me. ;(

    I just wanted to clarify, that you made sure you extracted the Plugins folder correctly. Look inside your Plugins folder and you should see something like this.


  5. #5
    Join Date
    Oct 2006
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well, i got the plugins thingie...but still says same thing...so that wasnt the problem apparently

  6. #6
    Join Date
    Aug 2006
    Location
    London
    Posts
    2,021
    Mentioned
    2 Post(s)
    Quoted
    0 Post(s)

    Default

    try doing SetupSRL, that calls a procedure called IniciateFreddyPlugin, and is needed for all freddy plugin procedures

    also, plugins dont take effect until you close SCAR, so try closing then reopening SCAR
    Join the Official SRL IRC channel. Learn how to Here.

  7. #7
    Join Date
    Oct 2006
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol, i kinda feel bad asking for help, cuz usually i can make it on my own, cuz some1 else asked the same question, but this one ive yet to find....and i dont even know what a "color circle" is, so, that dont help me much either.....if u knew what a color circle is,could u post what it is? for maybe i could fix it, for i have LIMITED computer knowledge....lol

  8. #8
    Join Date
    Oct 2006
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    http://en.wikipedia.org/wiki/Color_circle
    would this have anything to do with it?¿?

  9. #9
    Join Date
    Feb 2006
    Location
    Weed Ca
    Posts
    146
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Crakka View Post
    http://en.wikipedia.org/wiki/Color_circle
    would this have anything to do with it?¿?
    Please no double posting and colorcircle I imagine is where you find a color inside the circumfernce of a circle. which would not be what ever that is I took a quick look. just go to the plugins inside of you srl file and cut and paste them into the pluguns folder for scar like Whiteshadow said.

    Also what script are you trying to run?
    Have fun always

    Taken from Boreas
    [CODE]If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig[/CODE]

  10. #10
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    I thought the plugins didn't have to be moved with the newest srl because it goes in scars root folder so that it install into plugins and includes. Is this true?

  11. #11
    Join Date
    Oct 2006
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok, well it made me mad, so i jsut removed that little bitty section in which kept giving me problems....im sure that wasnt the greatest idea ever...but atleast it got me past that part...

  12. #12
    Join Date
    Aug 2006
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok. Make sure you have the latest version of SRL(3.4) and SCAR(2.3)

    Then make sure you have it setup right and all placed in the correct files(from what i see you have that all correct)

    Now. The unknown Identifyer should just mean that something isnt called upon correctly.

    If you have all the files correct, and the correct version of SRL and SCAR, use this script.

    program Test;
    {.include SRL/SRL.SCAR}

    const
    Color=16777215;//Set the color
    MidX=816;//Set where the center of the circle should be.(x)
    MidY=282;//Set where the center of the circle should be.(y)


    begin
    SetupSRL;
    FindColorCircle(x,y,Color,5,MidX,MidY);
    Mouse(x,y,2,2,true)
    end.

    If you have everything setup properly, then that script will run. if not, then IDK.

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
  •