Results 1 to 3 of 3

Thread: [Procedure]AWalk3

  1. #1
    Join Date
    May 2006
    Location
    West Coast
    Posts
    820
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [Procedure]AWalk3

    This function is derived from Awalk2, because I was in love with it, but then the new engine killed it. So here is its succesor: Awalk3

    SCAR Code:
    Procedure AWalk3(Degree, Radius : Integer);  //Help from starblaster100
    Var
      Ax, Ay : Integer;
    begin
      If (Radius > 57) then
        Radius := 57;
      Ax := Round (  Radius * Sin (Degree * Pi / 180)) + 648;
      Ay := Round (- Radius * Cos (Degree * Pi / 180)) + 83;
      Mouse(Ax, Ay, 0, 0, True);
    end;

    To use just enter in the Degree you want to click at, and the radius of the click(distance from center of MM)

  2. #2
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Great , do you mind of I modify this slightly and use it? (giving you and star credits of course)

  3. #3
    Join Date
    Jun 2006
    Location
    USA
    Posts
    428
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is awesome!

    I made something like this a while ago, but this is better & shorter :P

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help with run procedure
    By MetalancA in forum OSR Help
    Replies: 2
    Last Post: 08-30-2008, 08:19 PM
  2. Procedure TypeSendRandom & Procedure AutoResponder!
    By Ultra in forum Research & Development Lounge
    Replies: 12
    Last Post: 01-08-2008, 07:04 PM
  3. Replies: 8
    Last Post: 05-24-2007, 11:57 PM
  4. Procedure that calls random procedure?
    By Secet in forum OSR Help
    Replies: 2
    Last Post: 03-03-2007, 03:56 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
  •