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

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

After reading the sticky ive produced this... any further help?
  1. Unread #1 - Feb 22, 2010 at 9:16 AM
  2. rss3
    Joined:
    Feb 21, 2010
    Posts:
    5
    Referrals:
    0
    Sythe Gold:
    0

    rss3 Newcomer

    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]
     
  3. Unread #2 - Feb 22, 2010 at 1:56 PM
  4. cazax
    Joined:
    Nov 13, 2007
    Posts:
    457
    Referrals:
    0
    Sythe Gold:
    0

    cazax Forum Addict

    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.
     
  5. Unread #3 - Feb 22, 2010 at 4:42 PM
  6. rss3
    Joined:
    Feb 21, 2010
    Posts:
    5
    Referrals:
    0
    Sythe Gold:
    0

    rss3 Newcomer

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

    How do i go about doing both of these things?
     
  7. Unread #4 - Feb 22, 2010 at 7:30 PM
  8. cazax
    Joined:
    Nov 13, 2007
    Posts:
    457
    Referrals:
    0
    Sythe Gold:
    0

    cazax Forum Addict

    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');
     
  9. Unread #5 - Feb 22, 2010 at 7:39 PM
  10. rss3
    Joined:
    Feb 21, 2010
    Posts:
    5
    Referrals:
    0
    Sythe Gold:
    0

    rss3 Newcomer

    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?
     
  11. Unread #6 - Feb 22, 2010 at 7:52 PM
  12. rss3
    Joined:
    Feb 21, 2010
    Posts:
    5
    Referrals:
    0
    Sythe Gold:
    0

    rss3 Newcomer

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

    Only error im getting?
     
  13. Unread #7 - Feb 23, 2010 at 12:59 PM
  14. cazax
    Joined:
    Nov 13, 2007
    Posts:
    457
    Referrals:
    0
    Sythe Gold:
    0

    cazax Forum Addict

    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 >

Users viewing this thread
1 guest


 
 
Adblock breaks this site