Results 1 to 12 of 12

Thread: Wallfire's Minesweeper script

  1. #1
    Join Date
    May 2006
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Wallfire's Minesweeper script

    I remember seeing a script that plays minesweeper a while ago. I think it was made by Wallfire. Does anyone here have it? Ive been searching for it and I cannot find it. Anyway, if anyone here has it, please post it or upload it.

  2. #2
    Join Date
    Oct 2007
    Posts
    144
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    yeah i have heard of that too... i would also like it if found...

  3. #3
    Join Date
    Jun 2007
    Posts
    350
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Why not just play minesweeper on your computer games... no need for a script to do it.

  4. #4
    Join Date
    May 2006
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Im pretty good at minesweeper, I just want to find the script for it.

  5. #5
    Join Date
    Oct 2007
    Posts
    144
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by jcp View Post
    Im pretty good at minesweeper, I just want to find the script for it.
    i agree... and isn't scripts what this is about..?

  6. #6
    Join Date
    May 2006
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by gothguydante View Post
    i agree... and isn't scripts what this is about..?
    Yep, this script just solves minesweeper really quickly.

  7. #7
    Join Date
    Feb 2006
    Location
    New Zealand
    Posts
    1,330
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I had one that solved fairly quickly. On my old computer though. When i can be bothered ill go make a crossover cable and network em up and transfer it over. THen post it in other scripts. That is if you are talking about one that actually sovled it not just random shit.

  8. #8
    Join Date
    Mar 2007
    Location
    Netherlands->Amersfoort.
    Posts
    1,615
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sumillion also have a script that sloves him.

    edit: iam wrong

    http://www.srl-forums.com/forum/sear...earchid=397691
    The Holly search

  9. #9
    Join Date
    May 2006
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Pyro View Post
    I had one that solved fairly quickly. On my old computer though. When i can be bothered ill go make a crossover cable and network em up and transfer it over. THen post it in other scripts. That is if you are talking about one that actually sovled it not just random shit.
    Yep, thats the one im looking for. Ive seen the one that guesses, it doesnt work very well.

  10. #10
    Join Date
    Oct 2006
    Location
    I'm also from Michigan!
    Posts
    563
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    it wouldnt be to hard to make if you used the "xyzzy shift" cheat.


    EDIT:
    SCAR Code:
    {winMine solver by munk

    can beat expert in 1 sec. :D

    INSTRUCTIONS:

    1) have minesweeper open and visible.
    2) Drag crosshair over desktop.
    3) click play.

    It'll take 3-4 seconds to setup. Then itll cook through it. have fun.

    }

    program winMine;
    var
      i,t,x,y,w,h,ix,iy,mx,my,bx,by,boxes,mineScreen:integer;
    begin
     // movetotray;

      minescreen:=DTMFromString('78DA6374636060F8CA80021A1A1AC0342394C' +
           'FE802243E1350E34184391E44980372CF7722DCF30DBF1A003A24' +
           '106E');
      getclientdimensions(w,h);
      if findDTM(minescreen,x,y,0,0,w,h) then
      begin
        clickmouse(x,y,true);
        wait(100);
        SendKeys('xyzzy');
        KeyDown(VK_Shift);
        wait(3000);
        KeyUp(VK_Shift);
        t:=getSystemTime;
        for i:=x+1 to w do
          if findColor(mx,my,8421504,i,y,i,y) then inc(bx) else break;
        for i:=y+1 to h do
          if findColor(mx,my,8421504,x,i,x,i) then inc(by) else break;
        bx:=floor(bx/16);
        by:=floor(by/16);
        boxes:=floor(bx*by);
        writeln(inttostr(boxes)+' boxes, w'+inttostr(bx)+' h'+inttostr(by));
        for iy:=0 to by-1 do
          for ix:=0 to bx-1 do
          begin
            mx:=x+8+floor(ix*16);
            my:=y+8+floor(iy*16);
            MoveMouse(mx,my);
           // wait(1);
            if getColor(0,0)=16777215 then clickmouse(mx,my,true);
          end;
        writeln('solving took '+inttostr(getSystemTime-t)+'ms');
      end else writeln('no winMine Found!');
    end.


  11. #11
    Join Date
    Oct 2006
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Eh.. the script doesn't work for me.

    It just goes to the upper left box, and then drags the cursor to the lower right corner.. doesn't do anything

  12. #12
    Join Date
    Aug 2007
    Location
    Edgeville
    Posts
    178
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. The Concepts Of Making A Minesweeper Bot
    By Gearsnare in forum NOTA
    Replies: 2
    Last Post: 03-09-2009, 04:59 AM
  2. MineSweeper Hack
    By mal1t1a in forum First Scripts
    Replies: 20
    Last Post: 08-15-2008, 10:14 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
  •