Results 1 to 7 of 7

Thread: MS Paint Inverter

  1. #1
    Join Date
    Oct 2006
    Location
    Ohio
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    MS Paint Inverter

    This will Goto Colors in an MS Paint drawing and erase them, or change then to a different color...

    This is My First Script so I don't expect to get SRL- Scripter status or anything
    because
    #1 it's not SRL

    This Script does work pretty good though

    SCAR Code:
    {|/////////////////////////////////////////////////////////////////////|
    /|/////////////////////////////////////////////////////////////////////|
    /|////////////////////This Is My First Script//////////////////////////|
    /|//////////////////////////By: FrOgY//////////////////////////////////|
    /|/////////Draw a picture in Paint With Some Of These Colors///////////|
    /|////////////Dark Blue, Dark Yellow, Red, Black, or White/////////////|
    /|/////////Go To The Setup and Type the color you drew with////////////|
    /|////////Assign Scar to the Paint Window, then run the Script/////////|
    /|//The Script Will Erase or Draw Over all of the color you drew with//|
    /|/////////////////////////////////////////////////////////////////////|
    /|///////////////Make The Image At Least 10x10/////////////////////////|
    /|///////Use The Large Brush Tool or Eraser not pencil/////////////////|
    /|/////////////////////////////////////////////////////////////////////|
    /|////Start the Mouse By where you want it to start on the picture/////|
    /|//////////////////and use ctrl+alt+s to start////////////////////////|
    /|/////////////////////////////////////////////////////////////////////|}


    program New;
    var x,y,w,h: integer;

    const
    blue = 16711680;
    red = 255;
    yellow = 65535;
    black = 0;
    white = 16777215;

    // Setup Section
    color= blue; //type One Of Above Colors Here
    // End Of Setup

    procedure ClickColor;
     begin
      FindColorSpiral(x,y,color,3,3,w-1,h-1);
      MoveMouseSmooth(x,y);
      ClickMouse(x,y,true);
     end;

    begin
      GetClientDimensions(w,h);
      GetMousePos(x,y);
     repeat
      ClickColor;
     until(false)
    end.

    http://www.villu-reborn.com/showthre...3554#post33554 for more info

  2. #2
    Join Date
    Feb 2006
    Posts
    406
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    moved to other scripts forum

  3. #3
    Join Date
    Oct 2006
    Location
    Ohio
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thank you, try it out, it's cool when you do mazes or spirals with it....

  4. #4
    Join Date
    Feb 2006
    Location
    New Zealand
    Posts
    485
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Very Preeety.!

  5. #5
    Join Date
    Oct 2006
    Location
    Ohio
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Man I love SCAR, SRL, and the Pascal programming language is really easy to use.

    I just made a World 2 Login Script that checks if the World 2 text is green or white, if it's white it clicks the (v) button (sort servers descending button) over and over again until World 2 turns green (has room for you to join).

    I also made a password generator that generates 4 letters, 4 numbers, 4 letters
    ex: teue5087febk

  6. #6
    Join Date
    Aug 2006
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  7. #7
    Join Date
    Oct 2006
    Location
    Ohio
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Anyone try out this script? I had some of my friends try it and they think it's fun, lol

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. MS Paint
    By Dan Cardin in forum Computer Help and Tutorials
    Replies: 11
    Last Post: 09-24-2008, 12:26 PM
  2. Scar paint...
    By Negaal in forum Graphics and Multimedia
    Replies: 11
    Last Post: 03-31-2008, 11:45 AM
  3. look what this guy can do with paint
    By coo too in forum Graphics and Multimedia
    Replies: 14
    Last Post: 03-16-2008, 03:33 AM
  4. MS paint....
    By wired16 in forum News and General
    Replies: 3
    Last Post: 06-13-2007, 04:37 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •