Jump to content

Czar

Global Moderator
  • Posts

    21826
  • Joined

  • Last visited

  • Days Won

    1925
  • Feedback

    100%

Everything posted by Czar

  1. Ah I guess you can make it so if the closed door doesn't exist, then go to the SPIN case (use the spinning wheel) (lumbridgeDoor == null || area.contains(myPosition) to set the SPIN state, otherwise it will just walk to the room redundantly, when it can just click the spinning wheel and immediately start spinning ;)
  2. You forgot to add spinningWheel.interact("Use"), that's why it's not doing anything
  3. Since it is the first time you are running it, go to bank and have the items you need in your inventory, e.g. 20 trout, 1 camelot teleport then, click the button called 'Load Inventory' and it will save that inventory for the future, so every time you kill rock crabs and bank, it will take out those items. If you bring a camelot teleport with you (cammy tab) it will teleport, if you bring camelot spell runes, it will teleport using the spell. If you want to train ranged, bring some arrows/knives/whatever and run the script. The script does most of the work for you. Make sure you run the script while logged in.
  4. Make a filter for the door with the following checks: - hasAction("Open"); - getY() <= Y (y being the y coordinate of the door closer to the stairs, not the second door for rune mysteries) if ^ that door exists, open it, if not, click the spinner and proceed with spinning. public static Filter<RS2Object> LUMBRIDGE_SOUTH_DOOR = new Filter<RS2Object>() { @Override public boolean match(RS2Object o) { if (o != null && (o.hasAction("Open")) && o.getY() < YYYY && o.getName().equalsIgnoreCase("Door")) { return true; } return false; } };
  5. Hmm, you'll have to give me more information than that, try running the script now and see what happens, if nothing still happens, I will investigate the issue. I do have an idea though, which experiment spot did you go to? Did you change anything from that last run? I haven't made any recent changes, so if this script worked last time it should keep working and so on, also, make sure to use the latest client .40
  6. Thanks mate, so far I think I've fixed the aggressive mode, other than that the script works fine. The aggressive option was causing problems a few versions ago, however I made some changes in v2.15.
  7. Version 2.15 - Fixed visibility issue for aggressive mode (doesn't detect crab when standing on top of it) Update should be live within an hour.
  8. Czar

    CzarRangingGuild

    Wow, unlucky man Is your IP flagged or something (did you get banned on another account using another script or anything?), because one user achieved 99 ranged quite recently (a few posts above) which requires at least 100hrs+ of botting.. So that's strange.
  9. Has it even made a visible difference? I changed around a lot of the code. Anyway I'll investigate some more I guess.
  10. Thanks for the feedback, I will investigate this and make an update ASAP.
  11. Version 2.1 - Fixed aggressive mode! Now works flawlessly. - Fixed paint font (url link was dead) Update should be live as soon as SDN manager accepts the update (~1 hour)
  12. Czar

    CzarRangingGuild

    Well it is the most popular range guild script in OSBot and it works well Version 4.1 - Fixed paint - Fixed visibility
  13. Czar

    CzarRangingGuild

    Will fix this immediately, thought the client fixed the visibility issue already
  14. Where exactly did it get stuck, and where did it walk, and did the script correct itself Alright I have added some updates to the script to make it perform better and more efficiently. Version 2.99 - Fixed broken font in paint - Fixed getting stuck in port sarim (happened randomly) - Added more accurate price grabber (more accurate profit)
  15. Update coming soon, ETA ~3 hours, for now just disable aggressive mode like I mentioned earlier
  16. Mate all you had to do was ask, world hopping will feature in the next update including an option to hop at X players
  17. Make sure you are not using aggressive mode for now, there have been some rough patches with the OSBot client (i'm sure it will be fixed in the coming versions) but in the meantime just don't use that mode. If there are still problems then post it and I will take another look and provide a workaround fix to these issues until the client is sorted. @Non its 4.99
  18. If it only withdraws when you manually open the bank, there is an issue with opening it (bank.open()). Personally, I have never it used due to the very same reason this thread is posted. However, in the meantime you'll just have to do the plain old RS2Object bankBooth = getObjects().closest("Bank booth"); or, create a filter for it to find all bank booths with the 'Bank' option to get rid of closed bank booths etc (this also applies to bank npcs and bank chests) and interact with it to open the bank.
  19. Well give him an auth ares -.- until everything is sorted out :P
  20. The OSBot version is the real killer for bugs (update b4 posting pls)
  21. Czar

    CzarRangingGuild

    Sure mate, - Don't bot more than 12 hours/day - Don't bot on RS update days (new updates) that's it, but if you are worried, you can spend some time legit (quests, pking etc) just to be more safe enjoy ;)
  22. I added a delay to changing fishing spots so that it doesn't look like a bot. Also, enable Anti-AFK in the GUI to stop it from logging out. I will make some tests to make sure everything is working, however. Thanks for the feedback, will update in ~30 minutes. EDIT: Alright, I fished shrimps @ Karamja and it changed the spots perfectly fine. I'm powerfishing and I enabled anti-afk. I will make an update which makes it Anti-AFK by default, and if you want to AFK then you can enable it in the GUI.
×
×
  • Create New...