Jump to content

Search the Community

Showing results for tags 'ranging'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Forum Rules
    • Announcements
    • General Discussion
    • Forum Discussion
  • Support
    • Download SCAR Divi
    • SCAR Divi Manual
    • General Help
    • Scripting Help
    • Script Help
    • Tutorials and FAQ
  • Scripts
    • Scripts For Games
    • Game Scripts
    • Other Scripts
    • Requests
  • Include Libraries
    • OSI
    • MSSL
    • GMRL
    • SSIL
    • Archive
  • Code Bin
    • Mouse & Keyboard
    • Screen & Client
    • Color, Bitmap, DTM & OCR
    • Points & Boxes
    • Files & Networking
    • Math
    • Other Snippets
  • Development
    • Development Roadmap
    • Bugtracker
    • Development Discussion
  • Games
    • RuneScape
    • Seafight
    • Other Games
  • Misc
    • Native Corner
    • Programming
    • Graphics
    • Music
    • Movies & TV

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me


Location


Interests


Occupation


Studies


Skype

Found 3 results

  1. My first script of 2013! Start the script facing north in the position shown in the picture below with either a bow or crossbow equip and plenty of arrows/bolts in your bag. If you wish to use the alarm you'll need to place a .wav file in your c: directory or equivalent directory. Enjoy. [sCAR]//AmberGuardRanger v0.2 //Amberleaf //http://www.scar-divi.com {.include OSI\OSI.scar} const USERNAME = 'jimbob'; PASSWORD = 'jones'; WAITBEFORELOGIN = 0; // minutes to wait before logging back in procedure ScriptTerminate; begin FreeOSI; end; procedure LogIn; var x, y: Integer; begin If FindColor(x, y, 0, 274, 267, 274, 267) then begin Writeln('Logging In') Mouse(355, 281, 0, 0, True); Wait(150); TypeText(USERNAME); Wait(1000); Mouse(193, 309, 0, 0, True); Wait(60000 * WAITBEFORELOGIN); TypeText(PASSWORD); Mouse(411, 250, 0, 0, True); Wait(6000); Mouse(264, 196, 0, 0, True); Wait(150); end; end; procedure FindTarget; var x, y: Integer; begin If FindColors(x, y, [10727147, 10858731, 11121644, 10661355, 10990060], 252, 191, 502, 323) then begin MMouse(x, y, 0, 0); Wait(5); Mouse(x, y, 0, 0, False); end; end; procedure Atttack; var x, y: Integer; begin If FindColor(x, y, 65280, 23, 28, 490, 301) then begin MMouse(x, y, 0, 0); GetMousePos(x, y); Mouse(x, y, 0, 0, false); Wait(2500); end else begin MMouse(377, 281, 15, 15); end; end; procedure InCombat; var x, y: Integer; begin repeat If FindColors(x, y, [10727147, 10858731, 11121644, 10661355, 10990060], 244, 147, 353, 223) then begin MMouse(x, y, 15, 15); Wait(1000); WriteLn('in combat...'); end; If GetKeyState(VK_F12) then begin TerminateScript; end; until (FindColors(x, y, [10727147, 10858731, 11121644, 10661355, 10990060], 244, 147, 353, 223) = False); Wait(500); end; procedure Alarm; var x, y: Integer; begin If FindColor(x, y, 65280, 242, 250, 300, 321) then begin PlaySound('c:\siren.wav'); //change to your own wave in your own directory Wait(1000); TerminateScript; end; end; begin SetupOSI; MouseSpeed := 25; repeat LogIn; Alarm; FindTarget; Atttack; InCombat; until GetKeyState(VK_F12); end. [/sCAR]
  2. {.Script Info: # ScriptName = Demon Slinger # Author = Wanted # Description = Kills the lesser demon in the wizard tower with a sling in RS2. # Version = 2.00 # Date = November 6, 2011 # Comments = Have your sling wielded. Please do not distribute modified copies of this script, instead post patches and suggestions. # Requirements = SCAR 3.29 Alpha or newer OSI Optional SMART Use SAFE MODE WITH MINIMAL GRAPHICS, 32 BIT COLOR More scripts can be found at scar-divi.com /Script Info} Repo for latest updates https://github.com/OSI1/OSI-Demon-Slinger For you lazy people who can't use git, https://github.com/OSI1/OSI-Demon-Slinger/zipball/master Pure color dependency Optional SMART Multi player Optional Auto responder Area detection w/ door opener relocater Is lacking anti-ban except for the auto responder and the extreme humanness of OSI Is lacking anti-randoms at the moment because OSI hasn't started them yet, however it will logout if a random is found. Optional break times Extensive Progress reports You must have SCAR 3.28.1 or newer. You will need latest OSI, use the includes manager or git. Happy botting.
  3. PRSC Varrock Arrow-Bolt Buyer v1.02 Current Status: Works! [Mar. 9, 2013] NOTES -Target the Project RSC APPLET area with SCAR Divi's crosshair. -Latest version of MSSL can be downloaded from SCAR Divi's Includes Manager. -Credits and a big thanks goes to Amberleaf for writing such an awesome script! Requirements -SCAR Divi version 3.38(+) - Click HERE to download SCAR Divi 3.38 -MSSL version 1.00-8 (NOTE: Update to LATEST with SCAR Divi's Includes Manager!) Build Information -Version 1.02 -Released December 26th, 2012. Features -Buys both, Bronze arrows & Crossbow bolts -Relogging (optional, will warn if you keep the USERNAME & PASSWORD fields empty ['']). -ALARMS and stops buying, when/if you don't have enough space or you run out of money! -Staff member detection (when Staff Member is writing to chatbox) To be added/improved/fixed in next versions... -Logical stuff. -Maximum prices to buy bolts/arrows with.. Enjoy! -Jani [PRSC] Varrock Arrow-Bolt Buyer v1.00.scar [PRSC] Varrock Arrow-Bolt Buyer v1.01.scar [PRSC] Varrock Arrow-Bolt Buyer v1.02.scar
×
  • Create New...