Adblock breaks this site

After reading the sticky ive produced this... any further help?

Discussion in 'Scar/Simba Help' started by rss3, Feb 22, 2010.

  1. rss3

    rss3 Newcomer

    Joined:
    Feb 21, 2010
    Posts:
    5
    Referrals:
    0
    Sythe Gold:
    0
    After reading the sticky ive produced this... any further help?

    After requesting a script, no one replied, so instead of being lazy I had a go myself. I'm just learning and want to keep things real simple at the moment.

    Hopefully what my script does is:

    Loop forever.
    Right click the colour I set in the const.
    Wait 3 seconds before doing it again.

    What i need it to do is after right clicking i need it to select pickpocket? so any help there would be great.

    Right click screen if this helps?

    [​IMG]
     
  2. cazax

    cazax Forum Addict

    Joined:
    Nov 13, 2007
    Posts:
    457
    Referrals:
    0
    Sythe Gold:
    0
    After reading the sticky ive produced this... any further help?

    Using SRL, you have access to ChooseOption. Also guard's colors change, so use FindColorTolerance at least.
     
  3. rss3

    rss3 Newcomer

    Joined:
    Feb 21, 2010
    Posts:
    5
    Referrals:
    0
    Sythe Gold:
    0
    After reading the sticky ive produced this... any further help?

    How do i go about doing both of these things?
     
  4. cazax

    cazax Forum Addict

    Joined:
    Nov 13, 2007
    Posts:
    457
    Referrals:
    0
    Sythe Gold:
    0
    After reading the sticky ive produced this... any further help?

    First Download SRL(File > Download SRL with the LATEST SCAR 3.21!). The after "program new;" put {.include SRL/SRL.scar}. Then at the beginning of your main loop put SetupSRL; After that you can use ChooseOption('ickpocket');
     
  5. rss3

    rss3 Newcomer

    Joined:
    Feb 21, 2010
    Posts:
    5
    Referrals:
    0
    Sythe Gold:
    0
    After reading the sticky ive produced this... any further help?

    Thank you so much for the reply really appreciate it.

    I have this now:

    Code:
    program Pickpocketing;
    {.include SRL/SRL.scar}
    
    var
    x,y: Integer;
    
    const
    GuardColor= 689068;//colour of the guard
    
    begin
    SetupSRL;
    repeat
     FindColorTolerance(x,y,GuardColor,0,0,600,600)) then
     ClickMouse(x,y,true);
     ChooseOption('pickpocket');
     Wait(3000+random(100));
     end;
    until(false);
    end.
    Everything look right?

    For the colour tolerance thing what does it actually do? and can i still use guardcolour= for it?
     
  6. rss3

    rss3 Newcomer

    Joined:
    Feb 21, 2010
    Posts:
    5
    Referrals:
    0
    Sythe Gold:
    0
    After reading the sticky ive produced this... any further help?

    Only error im getting?
     
  7. cazax

    cazax Forum Addict

    Joined:
    Nov 13, 2007
    Posts:
    457
    Referrals:
    0
    Sythe Gold:
    0
    After reading the sticky ive produced this... any further help?

    You need to move your plugins. go to your SRL folder > place plugins inside. Copy them all, paste in SCAR's plugins folder.
     
< Question about the SCar Mining Script you pay for... | IsUpText problem >


 
 
Adblock breaks this site