Results 1 to 7 of 7

Thread: Need help bad!

  1. #1
    Join Date
    Mar 2007
    Posts
    276
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Need help bad!

    Well i tried making a scar script from walking from lumby to draynor.. didnt work out so well. Please help

    Code:
    program AutoWalkLumb2Draynor;
    
    var
    x,y: Integer;
    
    const
    HelpSign = 7755811
    FarmingSign = 6712423
    DirtRoad = 2051163
    RedPoint = 1449703
    PaveMent = 6645101
    BankColor = 4048859
    
    Procedure HelpSign;
    
    begin;
    if(FindColor(x,y,HelpSign,628,2,12,32)) then
     begin
      MoveMouseSmoothEx(x,y +random(5),1,3,10,10)
       Wait(100+random(10));
        ClickMouse(x,y,true);
       end;
    end;
    
    begin;
    if(FindColor(x,y,HelpSign,575,44,604,72)) then
     begin
      MoveMouseSmoothEx(x,y +random(5),1,3,10,10)
       Wait(100+random(10));
        ClickMouse(x,y,true);
       end;
    end;
    
    Begin;
     Mouse(587,81)
    End;
    
    Begin;
     if(FindColor(x,y,FarmingSign,577,81,633,126)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end;
    
    Begin;
     if(FindColor(x,y,DirtRoad,580,35,612,54)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end;
    
    begin;
     if(FindColor(x,y,RedPoint,561,64,608,102)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end;
    
    begin;
     if(FindColor(x,y,DirtRoad,602,114,643,134)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end;
    
    begin;
     if(FindColor(x,y,DirtRoad,583,99,607,112)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end;
    
    begin;
     if(FindColor(x,y,DirtRoad,583,99,607,112)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end;
    
    begin;
     if(FindColor(x,y,PaveMent,571,88,606,127)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end;
    
    begin;
     if(FindColor(x,y,PaveMent,605,25,629,32)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end.
    
    begin;
     if(FindColor(x,y,BankColor,605,25,629,32)) then
      Wait(100+random(10));
       ClickMouse(x,y,true);
      end;
    end.

  2. #2
    Join Date
    Jan 2007
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Try using a more realiable walking procedures.
    Here is a great tutorial on realiable walking.
    http://www.villavu.com/forum/showthr...hlight=walking Tell me if you need help or dont understand something.
    I like cats.
    Narcle's AK Smelter 1.1.6
    Run Time : 7 Hr 53 Min 5 Sec
    Total Bars : 3371
    Total XP : 58995

  3. #3
    Join Date
    Jan 2007
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Also instead of using MoveMouseSmoothEx for moving the mouse use mmouse - safer.
    I like cats.
    Narcle's AK Smelter 1.1.6
    Run Time : 7 Hr 53 Min 5 Sec
    Total Bars : 3371
    Total XP : 58995

  4. #4
    ronny.m.p Guest

    Default

    Same with clickmouse..use mouse

  5. #5
    Join Date
    Mar 2007
    Posts
    276
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well i knew that but, Everytime i use mmouse, or mouse it says Invalide number of parenthesi or something, also did i use my intergers right and my constants? plz reply

  6. #6
    Join Date
    Jun 2006
    Location
    New Zealand
    Posts
    285
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Example of Mouse
    SCAR Code:
    Mouse(x, y, 2, 2, true)
    x, y are the 2 co-ords
    2,2 is making it so it will not click exactly at the x, y pos
    True means that you're left clicking
    Huehuehuehuehue

  7. #7
    Join Date
    Apr 2007
    Location
    Finland
    Posts
    938
    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)

Posting Permissions

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