Jump to content

Tom

Scripter III
  • Posts

    5325
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by Tom

  1. Depending on what you smelt, you are never going to have a full inventory.
  2. Its all a mix between pattern detection, sometimes client detection, and even mods just being a bitch and busting you. Operating system does not get taken into account
  3. I really don't know why I havent been using conditional sleeps all this time.
  4. The animation stops between each bar that is smelted. The best way to do this is to record the currentTimeMillis when the player is animating, then check if that recorded time has been increased by x amount of milliseconds, and if thats true then allow it to continue. I can show you a snippet perhaps when I get home.
  5. Tom

    Banned :D

    If that was the case, 99% of us would be banned
  6. I have noticed this as well
  7. Tom

    osFisher

    Banking support has been added, just havent updated the thread. Check now.
  8. You mean Windows and + for magnifier?
  9. So would protected be a better options? Or even re adjusting my packages so i dont have to use these modifiers at all? Thanks for pointing it out though, I do feel very clumsy using it a lot, my entire GUI class is utter shit in my opinion
  10. The instance lets me access all of the Script features that are extended in the main class Why do you say this? Is it because of my use of the static class WalkHandler? Or the excess use of public variables throughout main and GUI? Or perhaps i should be using protected?
  11. I see, i forgot the ! , I havent really gotten around to testing the bait side of things, since i pretty much re wrote the entire thing yesterday. Other than this, what do you think? Note: still working on the gui code, it is utter shit in my opinion
  12. If the bot it self is detected they ban you within 15 minutes
  13. Thread finished, source now hidden.
  14. Tom

    osFisher

    Fixed now, sorry about that!
  15. Tom

    osFisher

    Updated to version 1.1 Change-log - New dropping algorithms to increase anti ban - New Toggleable paint
  16. Yeah i've pretty much adjusted it now to work with my switch. Testing it now, will post back. @Novak works like a charm mate, thanks Now ive only gotta fix deselecting, which seems to be bugged
  17. This isn't quite the solution I'm looking for, but I will try the use of using inventory slot numbers rather than looping through the items in the inventory. That should help isolate my problem with items being dropped twice. Thanks!
  18. Due to the current inbuilt methods being a bit too "botlike", i decided to have a crack and tried to code my own, but introducing common human errors. Here is what I have: package com.ggplugins.osFisher; import java.util.ArrayList; import org.osbot.rs07.api.model.Item; import org.osbot.rs07.script.MethodProvider; import org.osbot.rs07.script.Script; public class Powerfish{ private Script instance; public Powerfish(Script instance){ this.instance = instance; } public void clearInventory(ArrayList<Item> safelist) throws InterruptedException{ for(Item i : instance.inventory.getItems()){ if(!safelist.contains(i)){ switch(MethodProvider.random(0, 200)){ case 25: instance.inventory.interact("Examine", i.getName()); MethodProvider.sleep(MethodProvider.random(300,600)); instance.inventory.drop(i.getName()); break; case 50: instance.inventory.interact("Use", i.getName()); MethodProvider.sleep(MethodProvider.random(300,600)); //Deselect item instance.inventory.drop(i.getName()); break; default: instance.inventory.drop(i.getName()); break; } MethodProvider.sleep(MethodProvider.random(350,750)); } } } } So what happens is, occasionally it will skip items, then it will jump back to them a few drops later, and once it gets down to the last 8 items in the inventory it decides to throw a null pointer on instance.inventory.drop(i.getName()); In the default case. So instead of staring at it for another 2 hours, I decided another pair of eyes might just be what I need so I've posted it here. Any help is appreciated, thanks.
  19. Tom

    osFisher

    No, it was made by Maxi and modified by Swizzbeat I only started scripting for OSBot yesterday, so my knowledge is still minimal Pictures coming soon, once I get feathers.
  20. Tom

    osFisher

    Price: ONLY $8.99 LIFETIME PURCHASE (Click to Purchase) Only have RSGP? Buy an OSBot voucher HERE. COMMENT ON THE THREAD FOR A 1 TIME 24 HOUR TRIAL NOW SUPPORTS AERIAL FISHING! Feature Highlights Selectable Locations / Fish Selectable Drop Methods and Banks Script Speed Customization Other Features DEADMAN MODE SUPPORT: - Will run to closest bank if player is under attack Command-Line Interface (CLI) osFisher currently supports CLI! There is currently 1 parameter required, which is the name of your properties file Example: This will load config.properties from your OSBot/Data/osFisher folder, the properties file can be named whatever you like, in case you would like multiple setups for different bots Feel free to post here / pm me if you are having problems with this feature! Progress Reports Please submit any if you get the chance! PLEASE REPORT ANY BUGS USING THE TEMPLATE BELOW SO THEY CAN BE FIXED ASAP Minnow Support Start script on west side of the expansion platform (left if facing north)
  21. Solved, had to be a SOCKS proxy, and the one I bought wasn't. For people looking to use proxies, make sure its SOCKS!
  22. Corrupted Edit: was almost 2MB less in file size as well, perhaps you forgot something
  23. Tom

    Dynamic Sleeping

    The world needs more people like you James, people that aren't afraid to express their opinions, and certainly don't treat everything like they are competing for the world title.
  24. The current version 2.3.34 seems broken, and the version 2.3.33 was when I was originally getting the issue that I posted about. So unless the problems started when 2.3.33 was released, I don't think trying an older version is going to help me very much Thanks though
  25. Hey all, so I joint this community the other day and noticed the client had an inbuilt proxy feature, so I went along and bought a private proxy. The client started, I entered the ip, port and authentication details and that worked all fine and dandy. It then took me to this screen: Edit: Just updated to 2.3.34 and now it doesnt get past "Loaded x RS Accounts!" Which seemed normal, then I tried to login and upon clicking the login button (after I had entered my details), it was like it wasn't sending out the login request, so basically nothing was happening. About 15 minutes later I finally get a pop up saying the socket has timed out, or something along those lines. Edit: I got the proxy from http://www.myprivateproxy.net/ so if anyone else has experience with these guys, please let me know! Any help is appreciated
×
×
  • Create New...