Jump to content

Search the Community

Showing results for tags 'video'.

  • 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 18 results

  1. This tutorial shows you the new abilities of the colors tools in SCAR Divi 3.36. [video=youtube_share;2pBaT9PUnHA]
  2. This is a super duper beginner tutorial for complete NEWBS to programming/development environments/etc and the like. It is very long, but it really covers how you should use SCAR Divi, how to learn it, basics, and the context. My longest one yet, and best tbh. Enjoy!
  3. [video=youtube_share;2tbB2S11q5g] Enjoy and yes it could be longer
  4. Still could be shorter. Working on that . [video=youtube_share;kVL-ZSieuR0] The script used in this tutorial: [scar] // Woot - By LordJashin program WoodCuttingTutorial; const TimeToRunScript = 60 * 60; // in seconds var x, y, Width, Height, TimesClicked: Integer; procedure SetupClient; begin GetClient.Activate; GetBoxSize(GetClient.ImageArea, Width, Height); end; procedure ChopTree; begin MoveMouse(214, 185); ClickMouse(214, 185, mbLeft); Inc(TimesClicked); end; procedure DropLog; begin MoveMouse(575, 228); wait(100); ClickMouse(575, 228, mbRight); wait(300); MoveMouse(575, 228 + 45); wait(100); ClickMouse(575, 228 + 45, mbLeft); end; procedure Loop; begin repeat ChopTree; wait(5000); DropLog; until (GetTimeRunning > (TimeToRunScript * 1000)); end; procedure MainLoop; begin ClearDebug; SetupClient; WriteLn('Script Started!'); Loop; end; begin MainLoop; end. [/scar]
  5. I was kind of zoned out, but maybe you guys can get something from this. I had just watched Abraham Lincoln: Vampire Hunter. lols. Do note that while we use the color picker the coordinates are relative to the client chosen as well. Also top left point is (x1, y1), bottom right point is (x2, y2) First tut in a while... [video=youtube_share;ExYHPhVkPW4] Enjoy 18mins....
  6. This tutorial shows you debugging in SCAR using breakpoints, stepping, ...
  7. This video shows how to indent your code properly.
  8. This tutorial shows how to make a simple Hello World script.
  9. This is my first video tutorial for SCAR, so go easy on me The audio is a bit off, and video is slightly compressed, but that should both improve with the next video.
×
  • Create New...