Results 1 to 6 of 6

Thread: I'm Movin' On! But i need help...

  1. #1
    Join Date
    Dec 2006
    Posts
    908
    Mentioned
    1 Post(s)
    Quoted
    17 Post(s)

    Default I'm Movin' On! But i need help...

    Well, i keep making Runescape scripts, i made 3 so far (They didn't turn out to be a big hit, it's sad. I feel failure-ish) but now im SICK and tired of making Runescape scripts. So i decided to macro on games. So far I'm focusing on super crazy guitar deluxe 3

    SCAR Code:
    {*******************************************************************************
    function FindNotes(Direction : String): Boolean;
    Description: Finds and solves the arrow key notes, but does not solve the number notes.
    Direction: Up, Down, Left, Right.
    *******************************************************************************}


    function FindNotes(Direction : String): Boolean;
    var
      X, Y, Key, Color : Integer;
    begin
      case (Direction) of
        'Up': begin
                Color := 153;
                Key := 0;
              end;
        'Down': begin
                  Color := 26112;
                  Key := 2;
                end;
        'Left': begin
                  Color := 6697728;
                  Key := 3;
                end;
        'Right': begin
                   Color := 6697830;
                   Key := 1;
                 end;
      end;
      if FindColor(X, Y, Color, SX1, SY1, SX2, SY2) then
      begin
        SendArrow(Key);
        Result := True;
        Exit;
      end
      else
        Exit;
    end;

    There you go. But i need help. Does SendArrow work? Sometimes my scipt misses a note and its really annoying!

    Also, SX1, etc... is the coordinates around the thingy where your suppose to press the button

    Code:
    |         |   <=
    |         |
    |         |
    |         |
    |         |
    |         |
    I'm too lazy to post a picture so I made this picture using 1337. =3

  2. #2
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Dude, just no. Dont cheat on games that take skill. that is just gay.
    ~ Metagen

  3. #3
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    Use SendKey(byte but, just loop up the code for it.

    Nava2
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  4. #4
    Join Date
    Jul 2007
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Metagen View Post
    Dude, just no. Dont cheat on games that take skill. that is just gay.
    Lmao, but true

  5. #5
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Use a FindColourTol, FindColor probably misses them sometimes because there is a slight change in the colour to deter macroers.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  6. #6
    Join Date
    Dec 2006
    Posts
    908
    Mentioned
    1 Post(s)
    Quoted
    17 Post(s)

    Default

    so true, but that was the only flash game i cam across to. ;p But i got this image of a ascript in my head on how everything works. And ok ill add like 5 tolerance ;p 10 maybe

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
  •