Page 1 of 5 123 ... LastLast
Results 1 to 25 of 120

Thread: GnomeRunnerPRO by Leetsxc

  1. #1
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default GnomeRunnerPRO by Leetsxc

    LeetzGnomeRunnerPRO with Custom Map SPS Positioning V1

    Here's a NEW YouTube Video of it in action V2.1:




    NEW PROGGIE!
    CREATED BY: TheAnubis



    TIP!
    Turn XP POP UP OFF AND COUNTER




    Quote Originally Posted by alorand View Post

    Setup
    Start In front of the Log with Camera Facing East



    Features

    Can Pin point and run to the Log with 99% accuracy
    Can Detect Multiple things such as if it is upstairs etc
    Detects if the Pipe is being used and waits then tries again
    Custom Functions to detect things
    Detects Text with DTM's so it instantly knows when its finished crossing the log, climbing down the tree
    Performs a custom fuction to cross the rope with out the Gnome affecting it, this is working well so far
    It Clicks the Rope 99% of the time with new method of finding
    Run's to the nets and does them pretty quickly and then the Pipe quickly after it
    It moves the mouse to a certain part of the screen where objects are sopost to be and 80% of the time is on target and does not need to detect with a Custom TPA or DTM but if this fail's it immediately looks for a Custom TPA or DTM in an area and clicks the object quickly


    New the Bot now uses My Custom Gnome Agility Course SPS Map's to detect your exact position! no need to type what stage your at anymore it will find it for you on start up XD


    UPDATES

    1.1:
    Completely Revamped Script

    1.2:
    Added arrays to the UpText and Option Functions to make them more accurate
    Added Custom TPA's, objects are now found faster and more accurately
    Made Rope Detection Method faster
    Tweaked a few things like wait's and stuff
    Added Compass Correction on all parts of the stage case
    Added a Debug mode in Const, make it 'True' if scripts bug up and post me the Debug Info here


    1.3:
    Second Net and Pipe are both now using Custom TPA's

    1.4:
    Added Angle correction to all Compass correction in case angle is stuck down for any reason

    1.5:
    Speed Tweaks

    1.6:
    Updated Fail Safe Process cycler to attempt the rope process Last to avoid Walking error

    1.7:
    Failsafe lap cycler has been fixed their was a bug in it

    1.8:
    SXC New proggie Thx to TheAnubis

    1.9:
    Attempts wasn't being reset for net and log so it couldn't try multiple times

    2.0:
    Fail Safe Logic has been upgraded it's way better now

    2.1:
    1 small speed change to the rope searching process.. So it wont miss..

    2.2:
    Fixed a bug in the failsafe cycle manager.. Should be solid now

    2.3:
    Tweaks

    2.4:
    It's been awhile since I've last updated the Gnome Runner but here you go guys
    Improved Reliability the script can now do a stable 62+ Lap's per hour


    2.5:
    I've noticed that the Second Net was not working and have fixed the Fail Safe for this now.

    New Detection of the Rope instead of just the blind mouse movement technique it will now detect the rope at a random compass angle now aswell.

    I have added a red click check to all Options selected as I noticed the WaitFindOption function was sometimes failing and sometimes unreliable without it.

    I also noticed how sometimes the Walking to Log could mess up,
    Ive improved this and it is now perfect
    a

    2.6:
    I've added another Fail safe Layer which is working quite well I think.
    I'm now using a ColorToleranceSpeed2 Dtm to get to the Second Net.
    A lot of other things and kinks have been fixed as well.


    2.7:
    I've been working on reliability a lot in this version, hopefully completely flawless now.. Running 50 minutes at 61 laps per hour...

    <NEW>

    Custom Map SPS Positioning v1:
    Well since the fail safe system wasn't working I decided to make a massive update,
    I've made my own SPS Map's for the Gnome Agility course since the current ones are outdated.
    Now the Fail Safe System just Collects your current position if you fail 3 times It's working so sexy it work's for upstairs as well most importantly so yeah guys Enjoy!


    Custom Map SPS Positioning v1.1:
    I've now perfected any flaws in the Positioning and also put in an extra fail safe for the first branch since sometimes it would get stuck because the wait option wouldn't read and cleaned up the code

    Last edited by Sir Ducksworthy; 04-01-2012 at 11:01 PM.

  2. #2
    Join Date
    Feb 2012
    Posts
    89
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default

    Very nice! il post a proggy later on when i'm finished thieving

  3. #3
    Join Date
    Feb 2012
    Location
    Toronto Ontario, Canada
    Posts
    331
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ah, thought this was an advanced runner. Grats on the script though, video looks promising.
    118/120 Dungeoneering

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

    Default

    Gets stuck at rope overhere, on what graphic settings are u playing?
    Forever: "You are really close to the Rope Lets try and failsafe cross"

  5. #5
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    I only just finished coding it and it is running pretty smoothly considering the difficulty of a script of this nature
    I had a chuckle with that

    E* Got some suggestions.
    HOLY SHIT WORK ON YOUR STANDARDS!!@!@!
    Simba Code:
    function WaitDTMRotated(Name, x1, y1, x2, y2, WaitPerLoop, MaxTime: Integer): Boolean;
    var
      T: Integer;
      aFound:extended;
    begin
      T := GetSystemTime + MaxTime;
      while (GetSystemTime < T) do
      begin
       if(finddtmrotatedSE(Name,x,y,x1,y1,x2,y2,-Pi, Pi, Pi/30, aFound))then
        begin
          Result := True;
          Exit;
        end;
        Wait(WaitPerLoop);
      end;
    end;
    I believe there's one already in the Include? I might be mistaken xD
    Simba Code:
    mmouse(287,167,1,1);
      if(waituptext('Log',1000))then
      begin
      getmousepos(x,y);
      mouse(x,y,0,0,false);
      if(waitoption('across',2000))then
      begin
          if(WaitDTMRotated(logcross,5,441,45,460,50,7000))then
        begin
         writeln('Crossed bitmap worked caught log on move mouse');
      stage:='Net';
      end;
      end;
      end else
      begin

    Coordinates :$
    Try TPAs as your main form and DTMs as a failsafe.

    Simba Code:
    if(Laps=Howmany)then begin FREEDTMZ;  terminatescript(); end;
    One line? :S

    Simba Code:
    writeln('O NROO Person be Taking PIPE Now.. Must wait like honorable botterman ');
    I lol'd.


    But other than that, it's good.
    You really need to work on your standards though...

  6. #6
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That should have been done so much earlier. Looks nice.
    Current activity: Recovering from vacation
    - Nulla pars vitae vacare officio potest -
    SRL membership? Can I buy that?
    Scripts - AGS - SWF - WAR - EMS - W100S-EM
    If you need scripting help, you can pm me. Remember, if you need help you have to ask for it properly though

  7. #7
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

  8. #8
    Join Date
    Feb 2012
    Location
    Ă…lesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    dosnt work at all its slow and it stops :S everywhere -.-

  9. #9
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

  10. #10
    Join Date
    Feb 2012
    Posts
    89
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default

    Uhh, is it me or is it missing a download link?

    edit: NVM!

  11. #11
    Join Date
    Feb 2012
    Location
    Ă…lesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ill try it out soon im coking atm:P

  12. #12
    Join Date
    Nov 2011
    Location
    In your bed ;)
    Posts
    123
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i thought pro as in advanced
    IM A SCUM!

  13. #13
    Join Date
    Mar 2012
    Location
    Ca
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    not going across the log. Worked once

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

    Default

    works but needs constant supervision and little bit of helping
    thank you for the script just need some more tweeks before it great :]

  15. #15
    Join Date
    Mar 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    May i ask you something, where do i need to stay for start the script? When i'm standing near the begin the cursor is moving and hold on the tree but he isn't doing anything ?
    How can i let the script working fine.

  16. #16
    Join Date
    Nov 2011
    Posts
    194
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    any chance you can make an advanced one ?

  17. #17
    Join Date
    Mar 2007
    Location
    Brisbane, AUS
    Posts
    305
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    gonna use this let u know how it goes =D

  18. #18
    Join Date
    May 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    OK , just to help people like me i didn't know what was going on , the thing is the starting angle



    so when you start the script make sure your around that angle

    for some reason every pic i upload doesnt show.. w/e ,watch his video and start it like his is , the camera should be looking at the right side of the character
    Last edited by cubandevil; 03-26-2012 at 06:40 AM.

  19. #19
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by phamxboa View Post
    any chance you can make an advanced one ?
    Yeh I could but problem is I don't have the Agility Lvl yet lolz..

    Quote Originally Posted by cubandevil View Post
    OK , just to help people like me i didn't know what was going on , the thing is the starting angle
    Hmm Ill update the script soon and add a setup guide to the main post.

    Edit:
    Scripts been fully updated everybody try it now and post feedback.
    Last edited by Sir Ducksworthy; 03-26-2012 at 07:04 PM.

  20. #20
    Join Date
    Mar 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I tried it, works untill the last 2 parts of the arena at the climbing wall or what it is he waits 1 minute bevore he does anything and at the last pipe he fails he click then near the area and moves away from the agility trainings place.

    EDIT: http://www.youtube.com/watch?v=r0AWTO8D9tM
    here you are an video from how it runs. Then you see where it fails, so you can maybe patch it? So it works better.
    Because this is annoying.
    Last edited by iDonn; 03-26-2012 at 08:23 PM.

  21. #21
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Ok kool as an update will be uploaded within 10mins
    Edit:
    It's Updated now
    Make that 18^
    Last edited by Sir Ducksworthy; 03-26-2012 at 08:52 PM.

  22. #22
    Join Date
    Feb 2012
    Location
    Ă…lesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ill test it in 15 mins and leave a proggie

    Edit: bugs up after 5 laps ....

    $$$$$$$$$LeetzGnomeRunnerPRO v1.6$$$$$$$$$$
    Time Running: 6 Minutes and 13 Seconds
    Laps Completed: 5
    Laps Per Hour: 55
    Anti-Bans Performed: 2
    **\*\*\*\*\*\*\*\*\*\*/*/*/*/*/*/*/*/*/*/**
    Successfully executed.

    Edit:
    Position Handler sess you are near the log
    Started Log LapProcess
    Failed Trying TPA
    Failed Guess, TPA FINDER
    Position Handler sess you are near the log
    Started Log LapProcess
    Found Uptext and Clicked Option
    Clicked Log Sucessfully with OBJECTDETECTOR
    Started Net LapProcess
    Found Uptext and Clicked Option
    Clicked Net Sucessfully
    Started Branch LapProcess
    Found Uptext and Clicked Option
    Started Rope LapProcess
    Screw finding the rope with a TPA OR DTM lets Walk to it and Do it the SXC way
    Started BranchSecond LapProcess
    Failed Trying TPA
    Found with TPA
    Clicked Branch Sucessfully
    Started NetSecond LapProcess
    Found Uptext and Clicked Option
    Clicked Net Sucessfully
    Started Pipe LapProcess
    Failed Trying TPA
    Found with TPA
    O NROO Person be Taking PIPE Now.. Must wait like honorable botterman
    Started PipeUsed LapProcess
    Found Uptext and Clicked Option
    Started WalktoLog LapProcess
    Position Handler sess you are near the log
    Started Log LapProcess
    Failed Guess, TPA FINDER
    Position Handler sess you are near the log
    Started Log LapProcess
    Failed Trying TPA
    Found with TPA
    Clicked Log Sucessfully with OBJECTDETECTOR
    Started Net LapProcess
    Found Uptext and Clicked Option
    Clicked Net Sucessfully
    Started Branch LapProcess
    Found Uptext and Clicked Option
    Started Rope LapProcess
    Screw finding the rope with a TPA OR DTM lets Walk to it and Do it the SXC way
    Successfully executed.
    Last edited by thomas1116; 03-27-2012 at 08:24 AM.

  23. #23
    Join Date
    Oct 2008
    Location
    Hawaii
    Posts
    228
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Testing it now! I will post a proggy in when I get a good one.

  24. #24
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    @thomas1116,
    Did it stop? or did it just not find the rope? if it didn't find the rope on it's first try it will fail safe and try again 3 more times.. if that fail's it will cycle through all the Stages of the Lap to see if it failed climbing the branch

  25. #25
    Join Date
    Feb 2012
    Location
    Ă…lesund,Norway
    Posts
    281
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by leetsxc View Post
    @thomas1116,
    Did it stop? or did it just not find the rope? if it didn't find the rope on it's first try it will fail safe and try again 3 more times.. if that fail's it will cycle through all the Stages of the Lap to see if it failed climbing the branch
    Yeah it got stuck, then the mouse started move slowly around and then it stopped :S , but the bot is nice and it's a great work but if it didn't stop or fail at 100 laps , that wud be awsome!

Page 1 of 5 123 ... LastLast

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
  •