Page 5 of 50 FirstFirst ... 3456715 ... LastLast
Results 101 to 125 of 1239

Thread: All in one DIVINATION - footballjds

  1. #101
    Join Date
    Apr 2012
    Location
    UK
    Posts
    269
    Mentioned
    2 Post(s)
    Quoted
    46 Post(s)

    Default

    Quote Originally Posted by superduperd View Post
    Prog overnight:

    I am almost level 80 so am glad to see that my next spot should work flawlessly

  2. #102
    Join Date
    Aug 2010
    Posts
    165
    Mentioned
    2 Post(s)
    Quoted
    39 Post(s)

    Default

    Quote Originally Posted by tristen8878 View Post
    I am almost level 80 so am glad to see that my next spot should work flawlessly
    play around with colors a bit though and test which colors work best for you (do 1 hour tests, thatll give the best conclusions)

    Got around 53.3k~/hour with this
    Code:
    _wispName := 'Brilliant';//the wisp's actual name
    _wispColor := 12630919;//main color of wisp
    _riftColor := 11276136;//the color of the rift on the mm
    51.7k~/hour atm with this
    Code:
     _wispName := 'Radiant';//the wisp's actual name
    _wispColor := 12433285;//main color of wisp
     _riftColor := 2461874;//the color of the rift on the mm

  3. #103
    Join Date
    Apr 2012
    Location
    UK
    Posts
    269
    Mentioned
    2 Post(s)
    Quoted
    46 Post(s)

    Default

    Quote Originally Posted by superduperd View Post
    play around with colors a bit though and test which colors work best for you (do 1 hour tests, thatll give the best conclusions)

    Got around 53.3k~/hour with this
    Code:
    _wispName := 'Brilliant';//the wisp's actual name
    _wispColor := 12630919;//main color of wisp
    _riftColor := 11276136;//the color of the rift on the mm
    51.7k~/hour atm with this
    Code:
     _wispName := 'Radiant';//the wisp's actual name
    _wispColor := 12433285;//main color of wisp
     _riftColor := 2461874;//the color of the rift on the mm
    Ye I found that this colour "16649903" works very well for the rift its worked 100% of the time so far

  4. #104
    Join Date
    Aug 2010
    Posts
    165
    Mentioned
    2 Post(s)
    Quoted
    39 Post(s)

    Default

    Quote Originally Posted by tristen8878 View Post
    Ye I found that this colour "16649903" works very well for the rift its worked 100% of the time so far
    55.2k~/hour
    Code:
    _wispName := 'Radiant';//the wisp's actual name
    _wispColor := 12301438;//main color of wisp
    _riftColor := 2461874;//the color of the rift on the mm
    will post if i find a better color, but i guess ill stick to this one for a bit

  5. #105
    Join Date
    Sep 2012
    Posts
    72
    Mentioned
    1 Post(s)
    Quoted
    38 Post(s)

    Default

    Quote Originally Posted by superduperd View Post
    55.2k~/hour
    Code:
    _wispName := 'Radiant';//the wisp's actual name
    _wispColor := 12301438;//main color of wisp
    _riftColor := 2461874;//the color of the rift on the mm
    will post if i find a better color, but i guess ill stick to this one for a bit
    Thanks for these, getting around 60k/h now after 1 hour of testing

  6. #106
    Join Date
    Oct 2012
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    41 Post(s)

    Default

    With Lustrous, occasionally gets caught stuck up North. Used this script 3 times and all 3 times it's happened. Hopefully no one saw!! Once even ended up North-East of Fenkenstreins Castle. If you're using this script from 70-80, you're probably best babysitting it. All 3 proggys were around an hour long when it happens.

  7. #107
    Join Date
    Aug 2010
    Posts
    165
    Mentioned
    2 Post(s)
    Quoted
    39 Post(s)

    Default



    works great!

  8. #108
    Join Date
    Sep 2012
    Posts
    72
    Mentioned
    1 Post(s)
    Quoted
    38 Post(s)

    Default

    Very nice proggy, any idea why my smart doesn't reload after 6hrs?

  9. #109
    Join Date
    Aug 2010
    Posts
    165
    Mentioned
    2 Post(s)
    Quoted
    39 Post(s)

    Default

    Quote Originally Posted by Nubzor View Post
    Very nice proggy, any idea why my smart doesn't reload after 6hrs?
    Nope, i didn't change anything in the script or simba to make it reload after 6hrs so that should not be the problem. What does your debug say when it doesnt reload?

  10. #110
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by superduperd View Post
    Nope, i didn't change anything in the script or simba to make it reload after 6hrs so that should not be the problem. What does your debug say when it doesnt reload?
    I have a fix for 6hr in my shark guild fisher script:

    Simba Code:
    if not isLoggedIn then
      begin
        print('We''re not logged in. respawning client.');
        wait(randomRange(5000, 10000));
        smartReloadClient((5 * 60000) + random(15000));

        if (waitClientReady()) then
        begin
          print('Client succesfully loaded after reload');
        end else
        begin
          print('Client never reloaded after restart..', TDebug.FATAL);
          terminateScript;
        end;
        if not players[currentPlayer].isActive then players.next(false);
        if players[currentPlayer].login then prepareSelf;
        if not isLoggedIn then
        begin
          writeln('Terminating, not logged in.');
          terminateScript;
        end;
      end;

  11. #111
    Join Date
    Sep 2012
    Posts
    72
    Mentioned
    1 Post(s)
    Quoted
    38 Post(s)

    Default

    Quote Originally Posted by superduperd View Post
    Nope, i didn't change anything in the script or simba to make it reload after 6hrs so that should not be the problem. What does your debug say when it doesnt reload?

    ------ Player is not active...
    ---- TPlayer.loginToLobby(): False
    ---- TPlayer.loginToLobby()
    ------ Player is not active...
    ---- TPlayer.loginToLobby(): False
    ---- TPlayer.loginToLobby()
    ------ Player is not active...
    ---- TPlayer.loginToLobby(): False
    ---- TPlayer.loginToLobby()

  12. #112
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by Nubzor View Post
    ------ Player is not active...
    ---- TPlayer.loginToLobby(): False
    ---- TPlayer.loginToLobby()
    ------ Player is not active...
    ---- TPlayer.loginToLobby(): False
    ---- TPlayer.loginToLobby()
    ------ Player is not active...
    ---- TPlayer.loginToLobby(): False
    ---- TPlayer.loginToLobby()
    the player got set inactive.

  13. #113
    Join Date
    Feb 2013
    Location
    Belgium
    Posts
    86
    Mentioned
    6 Post(s)
    Quoted
    35 Post(s)

    Default

    Works great, thanks! How is the banrate on this script, anyone got any issues with it yet?

  14. #114
    Join Date
    Feb 2012
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    99....finally :-) Thanks Footballjds - script worked flawlessly from start to finish. 1-99 using the script


    Thanks for making public - appreciate all the time and skill that went into this

  15. #115
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by bbassett View Post
    99....finally :-) Thanks Footballjds - script worked flawlessly from start to finish. 1-99 using the script


    Thanks for making public - appreciate all the time and skill that went into this
    way to go!!! grats

  16. #116
    Join Date
    Sep 2012
    Posts
    72
    Mentioned
    1 Post(s)
    Quoted
    38 Post(s)

    Default

    Grats mate. Close to 93 myself, im going for 99 as well! So far 73-93

  17. #117
    Join Date
    Dec 2013
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    29 Post(s)

    Default

    Quote Originally Posted by Nubzor View Post
    Grats mate. Close to 93 myself, im going for 99 as well! So far 73-93
    Soon to be 94 here. Been using this script for 14 days 15h a day from lvl 1 thanks again footbaljds

  18. #118
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Yeah, I can't thank you enough. So much more time for a social life with this script, haha.

  19. #119
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Guys, I have a large overhaul planned for this script. I don't know when I'll get the time to do it, but hopefully soon.

    • Custom SPS Map for every location(resulting in flawless location detection)
    • Dynamic mainloop for more fluid run
    • No more need for rift colors
    • Use location MMtoMS bounds to precisely search
    • Pretty progress report
    • Antiban and breaking system
    • Optional on screen debug
    • Level detection support
    • Config file to setup script exactly how you want it

  20. #120
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Really cool.
    I'm looking to learn more about how to make my own scripts and I'm seeing how yours works to get started with that. It's very neatly coded, thanks for that!

  21. #121
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by footballjds View Post
    Guys, I have a large overhaul planned for this script. I don't know when I'll get the time to do it, but hopefully soon.

    • Custom SPS Map for every location(resulting in flawless location detection)
    • Dynamic mainloop for more fluid run
    • No more need for rift colors
    • Use location MMtoMS bounds to precisely search
    • Pretty progress report
    • Antiban and breaking system
    • Optional on screen debug
    • Level detection support
    • Config file to setup script exactly how you want it
    Awesome man do it!

  22. #122
    Join Date
    Nov 2011
    Location
    behind you
    Posts
    202
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    How is the ban rate with Simba atm? This is a "safe" script? I know botting was never safe, but it was safer than nowadays.
    you can buy me, my work, my goals, even you can buy my spirit, but Theres something youll never buy. my indomitable thirst of life.

  23. #123
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Quote Originally Posted by eduardo230 View Post
    How is the ban rate with Simba atm? This is a "safe" script? I know botting was never safe, but it was safer than nowadays.
    Powerbot is extremely unsafe because they detect the PBot client immediately. SMART is detectable but apparently they don't detect it.

    Being a color bot, Simba is already way safer than injection, but depending on the script your character can still be really obvious if you aren't paying much attention/the script is badly made. I have heard elsewhere that Jagex looks for "low-probability behavior" that a script might do but not a player (i.e. when the script screws up).

    For this bot, I've been running it while awake doing coursework, and stopping it whenever my port ships are done. I do the world event too, and do farming runs, occasionally train another skill for a bit. I talk occasionally to people as well. I don't bot overnight since I'm awake for awhile and if I also botted overnight it would approach 24/7 which is obvious.

    Granted, I have no idea what Jagex actually looks at when they determine who is botting, but I think safety is very easily managed. Just don't be stupid. I'd rather have my account take a couple more days to achieve levels while looking legit than have it level 99 quicker but then get banned.

  24. #124
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by eduardo230 View Post
    How is the ban rate with Simba atm? This is a "safe" script? I know botting was never safe, but it was safer than nowadays.
    No bans have been reported with this script

  25. #125
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    Quote Originally Posted by footballjds View Post
    Guys, I have a large overhaul planned for this script. I don't know when I'll get the time to do it, but hopefully soon.

    • Custom SPS Map for every location(resulting in flawless location detection)
    • Dynamic mainloop for more fluid run
    • No more need for rift colors
    • Use location MMtoMS bounds to precisely search
    • Pretty progress report
    • Antiban and breaking system
    • Optional on screen debug
    • Level detection support
    • Config file to setup script exactly how you want it
    Feature suggestion: scan inventory occasionally for any non-wisp/energy items and drop them. Scan inventory below the first row so people can keep items they want there (teleport items, etc.). I've babysat the bot occasionally and noticed (at radiant specifically a couple days ago) that there were logs in my inventory.

Page 5 of 50 FirstFirst ... 3456715 ... 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
  •