Results 1 to 18 of 18

Thread: Falcon Bot

  1. #1
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default Falcon Bot

    It's my first time, I need help making one or getting the codes what i need.

    Simba Code:
    program Falcon;
    {$DEFINE SMART8}
    {$I SRL/SRL.Simba}
    {$I P07Include.Simba}
     procedure DeclarePlayers;
    begin
      NumberOfPlayers(1);
      CurrentPlayer := 0;

      with Players[0] do
      begin
        Name := '';
        Pass := '';
        Active := true;
      end;
    end;

    procedure Falcon;
    var
      x, y : Integer;
    begin
        writeln('Looking for Spotted Kebbits');
    If FindColorTolerance(x, y, 3954283, 0, 0, 376, 523, 15) Then
        writeln('Catching Spotted Kebbits ');
        Mouse(x, y, 0, 0, True);
        clickmouse2(mouse_Right);
        wait(300);
    end;

    begin
      SetupSRL();
      SetupP07Include;
      ActivateClient;
      Wait(1000);

      If (Not P07_LoggedIn) Then
      begin
        P07_LogInPlayer;
      end;

      repeat
    until (Not P07_LoggedIn)
       end.

    begin
      ClearDebug;
      Falcon;
    end.

    The mouse doesn't move to the spotted Kebbits.
    Last edited by alipotter890; 03-27-2013 at 02:21 AM.

  2. #2
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Why have you posted this? This makes no sense...

  3. #3
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by xtrapsp View Post
    Why have you posted this? This makes no sense...
    Yo be kinder man. He's giving a go at scripting.

    OT:

    Try FindObjCustom instead of findcolortolerance

    Try reading more beginner tutorials ( like Yohojo video's ) or how to script down a first rs tree.
    and
    Check other people's work on how they do it.

    Be sure to use AutocolorAid for your color searching!

    Creds to DannyRS for this wonderful sig!

  4. #4
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    Instead of MoveMouse --

    use ClickMouse2( for mouse clicking
    MMouse for mouse movement
    and Mouse for mouse movement and clicking

    And don't listen to the haters - this is a good start - keep it up

    Good job!

  5. #5
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Quote Originally Posted by Runehack123 View Post
    Instead of MoveMouse --

    use ClickMouse2( for mouse clicking
    MMouse for mouse movement
    and Mouse for mouse movement and clicking

    And don't listen to the haters - this is a good start - keep it up

    Good job!
    I'm hardly hating, he just hasn't explained what exactly he wants help with.

    Philip. Don't bring your upset from Skype here. Get on with it

  6. #6
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    Quote Originally Posted by xtrapsp View Post
    I'm hardly hating, he just hasn't explained what exactly he wants help with.

    Philip. Don't bring your upset from Skype here. Get on with it
    I wasn't even directly referring to you.

  7. #7
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Quote Originally Posted by Runehack123 View Post
    I wasn't even directly referring to you.
    Well considering Sjoe posted something 100% nice and I'm the only one writing something that could be construed as rude...
    You're full of it Philip.

  8. #8
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Thanks guys, what do i need for droping and burying bones?

  9. #9
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Its posted at the top.
    Last edited by alipotter890; 03-27-2013 at 01:22 AM.

  10. #10
    Join Date
    Dec 2011
    Posts
    170
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Last end must be end. not end;

  11. #11
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    i edited it on the top, Please help.

  12. #12
    Join Date
    Nov 2011
    Location
    Sacramento, California
    Posts
    366
    Mentioned
    4 Post(s)
    Quoted
    85 Post(s)

    Default

    I believe the use of the function "mouse" is advised against.. most people use "MMouse"

  13. #13
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    I get a error when using MMouse

  14. #14
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    did i do it correctly?

  15. #15
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Quote Originally Posted by alipotter890 View Post
    I get a error when using MMouse
    you're missing a ; at the end of mouse()

  16. #16
    Join Date
    Dec 2011
    Posts
    170
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Like I've told you like 100 times now on irc, read the beginner guide in the noob tutorial section.
    It's the pinned topic.

  17. #17
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    please fix this for me, I'll give you most of the credit.

  18. #18
    Join Date
    Mar 2013
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Read up on some tutorials about DTMs. They are the easiest methods to finding and clicking items in your inventory (burying bones and dropping furs.)
    [Catherby AIO Fisher[OSRS]] [30%] [Meh. Getting bored, no point in developing this.. ]

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
  •