Jump to content

Search the Community

Showing results for tags 'scar divi 3.13'.

  • 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 1 result

  1. Hey Everyone, Thanks for being here to help. Using SCAR Divi 3.13 I'm trying to make a script that will search the screen for a color, and then click it. I know the color is always there no matter what. The color moves around the screen. Here's what I have: program Automage; var c, i, x, y, w, h:integer; begin i := 1; c := 0; findwindowtitlepart('game',false); activateclient; wait(700); keydown(115); GetClientDimensions(w, h); while (i = 1) do begin while (c < 60) do begin findColor(x, y, 1638350, 0, 0, w - 1, h - 1); clickmouse(x, y, true); wait(1000); c := c + 1; end; wait(10000); c := 0; end; end. After targeting the window, and hitting play, the mouse clicks but it keeps pointing at 1 location. At about 30, 50. If I try changing the paramaters of findColor: findColor(x, y, 1638350, 0, 0, w - 1, h - 1); I get "Canvas does not allow drawing" If I try using findColorCircle, I get the same error. Thanks, -username
×
  • Create New...