Results 1 to 6 of 6

Thread: The best game EVER for SCAR!!!

  1. #1
    Join Date
    May 2008
    Location
    Australia
    Posts
    152
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    The best game EVER for SCAR!!!

    I found this game where you just have to click boxes as fast as you can so I wrote a little script for it!
    The game is here: http://www.themousegame.com/

    And here's my script!
    SCAR Code:
    ///////////////////////////////////////////////////
    /////                                         /////
    /////  TheMouseGame.Com Pwner by PhantomCode  /////
    /////                                         /////
    ///////////////////////////////////////////////////

    program TheMouseGameDotComPwner;
    {.include SRL\SRL.scar}

    const
      WaitTime = 203; // How long to wait between clicks in ms (~205)

    procedure ClickBoxes;
    var
      x, y , a, b : integer;
    begin
      x := 385;
      y := 140;
      for a:=0 to 6 do
      begin
        for b:=0 to 6 do
        begin
          writeln('Clicking box number ' + inttostr(a*7+b+1) + ' of 49');
          clickmouse(385+(20*b), 140+(20*a), true);
          wait(WaitTime);
        end;
      end;
    end;

    begin
      SetupSRL;
      activateclient;
      wait(1000);
      ClickBoxes;
      Writeln('All boxes clicked succesfully!');
    end.
    Freedom is the freedom to say two plus two equals four. If that is granted, all else follows.
    - George Orwell, Nineteen Eighty-Four

  2. #2
    Join Date
    May 2008
    Posts
    203
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Good work!

  3. #3
    Join Date
    May 2008
    Location
    Australia
    Posts
    152
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol, check out the highsores. JuKKa's been using it
    Freedom is the freedom to say two plus two equals four. If that is granted, all else follows.
    - George Orwell, Nineteen Eighty-Four

  4. #4
    Join Date
    Dec 2006
    Location
    The Underground
    Posts
    134
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Pretty kool

  5. #5
    Join Date
    May 2008
    Location
    Canada
    Posts
    665
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    haha it works =).

  6. #6
    Join Date
    Jun 2008
    Posts
    152
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i am now number one...hold the applause

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. The Random SCAR Name Game.
    By turbobk in forum Research & Development Lounge
    Replies: 7
    Last Post: 10-03-2008, 08:47 PM
  2. How To Make A Game In SCAR! *advanced ?
    By BazzBarrett in forum OSR Advanced Scripting Tutorials
    Replies: 15
    Last Post: 09-15-2008, 10:47 PM
  3. So you want to make a game using Scar?
    By solemn wishes in forum OSR Advanced Scripting Tutorials
    Replies: 8
    Last Post: 09-14-2008, 10:52 PM

Posting Permissions

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