Jump to content

Chase

Members
  • Posts

    127
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Chase

  1. Fantastic, much appreciated!
  2. What distribution are you on? I'm on MacOS
  3. Script is ready for release, except for setting up the sawmill task with butler. For context, setting up the task is using the log on the butler and saying take 26 to the sawmill to initialize the task. The using log on the butler part isn't working, but I am being told this could be a problem with the new update breaking OSBot temporarily.
  4. & is the delimiter for chaining commands together, so that will fail to work as well. echo "hi" & ls -a I would use "."
  5. Anyway you could change the CLI delimiter ';' causes a lot of problems on a unix system.
  6. If i don't slack I hopefully should have a beta out tonight. No promises though.
  7. What always bugs me though, is when people record like 2 hours of manually fletching and repeat the mouse clicks they can achieve 99 fletching or cooking w/e without bans. Always makes me suspicious the client's mouse movement is reproducible. The big thing in the programming scene now is machine learning, so I really believe Jagex could be using heaps of data, running the bots themselves in a controlled environment and have designed a system that can confidently differentiate between human and bot mouse movement. This dude wrote up a fantastic discussion about the topic
  8. I appreciate the offer, but unfortunately I have a tough week of school ahead of me. I apologize on going stale on these changes. It can be discouraging, I have received a lot of positive community feedback but have not received a reply for my SDN request for over 2 months.
  9. Yep, in the video that is oak planks. The profit has already taken into account all fees. Fees include : Price of Logs, Price of Laws, Sawmill fee, and the 10k every 8 trips for butler. Oak logs : 53gp Law Rune : 180gp Oak Plank : 477gp Sawmill fee per oak log : 250gp Butler price per 8 actions : 10,000gp Butler price per 1 action : ~1250gp Per Trip : (Oak Plank * 26) - [ (Oak Logs * 26) + (Sawmill Fee * 26) + (Law Rune * 2) + (Butler Price Per 1 Action) ] 12,402 - [1,378 + 6,500 + 360 + 1,250] 12,402 - 9,388 3,014gp per trip Average around 200 trips an hour 200 * 3,014 =~ 600k/hr
  10. Still have to finalize some things in the script, expect it next week or so. Have an exam friday, monday, and tuesday.
  11. Butler Planking Statistics 5000 - 5500 Planks Per Hour 500K - 700K GP/HR Profit [ Cost of Logs, Laws, Planking fees, and Butler fees already taken into account] Requirements 50 Construction PVP World Demon Butler and Bell Pull House and Lumbridge Teleport How to use Start in Lumbridge PVP World Safe Zone, next to bank chest Have Law Runes and Coins in inventory Have Dust Staff equipped Have Oak Logs in Bank, preferably at top left of primary bank tab for fastest results DO NOT START WITH LOGIN CREDENTIALS In the off chance the bot disconnects while in your house, when logging back in the account will be outside the house portal in an unguarded area! Use OSBot's default account. Select Log Type from UI, Currently only mahogany and oak logs. CLI TODO Add GUI to change log type [ Normal, Oak, Teak, Mahogany ] - Added. Double teleports sometimes - Fixed. Doesn't end when out of logs, runes, or gold - Added. When first started setup the sawmill task with butler - Added. Add failsafes because PVP World - For now run script without login credentials, in the case you DC Add support for phials, a Non-PVP world alternative Change Log Download : CHome 1.1 Beware this is the beta release, the bot is working in a PVP world and thus all your items and inventory could be lost. Please be careful when running this script, and monitor it closely.
  12. Chase

    Coal bag

    Just use the built in config debugger. Manually empty and fill the coal bag and see if any config value is changed.
  13. Yea the idea is run to the bank and hop worlds, I'll add when I add the randomized questing. Should be able to do today, been working on a private script lately which has been consuming some of my time. Found a 600k per hour method so gonna try to get like a 4 instance bot farm up at sometime. Might make a progress thread so keep a look out for that! Happy to help
  14. Fantastic You mentioned the coffin was still giving you problems right? Can you expand on this, on all 3 of my test runs it worked fine
  15. Updated the download link with new version. Worked on 3 of my accounts, let me know if there is still any problems. I'll start working on the quest randomization.
  16. Will look into this tonight, Hopefully its similar to the rune mysteries problem. Seems like I just need to tighten up the areas, the new web walking seems to have had some unforeseen effects on this script. I'll look into adding logic to teleport to Lumbridge, assuming not in Lumbridge and no quests have been started. I want to make sure the script can pick up where it left off, I don't like the idea of the script having to be all or nothing.
  17. Chase

    Lofi Music

    Definitely check out "Best Intentions", Favorite song I've made
  18. Weird behavior on my side only. Thanks guys!
  19. Hey, I make LOFI music. Would love for you guys to check it out. Let me know how you feel about it!
  20. Can you link your updated code?
  21. Are you checking to see if the pitch is indeed set to that pitch though?
  22. 67 is the maximum pitch in the game actually. I was testing this by pausing and moving my pitch below 44, so I don't believe this could be the problem. Looking for others to test this. This could be a serious bug in the client, if every script is running at 67 pitch
  23. if (camera.getPitchAngle() < 44) { status = "Moving camera angle"; int targetPitch = random(44, 67); log(targetPitch); if (camera.movePitch(targetPitch)) { if (!CTime.sleepUntil(3000, 100, () -> camera.getPitchAngle() == targetPitch)) { return random(50, 300); } } } This always sets my camera pitch to 67... targetPitch doesn't always return 67. Let me know if you get this behavior too, or if I'm doing something wrong in my code.
  24. Pushed a quick fix, use at your own discretion. Be back from class in an hour or two, and then ill be able to fully test. CQuest With Fixed Door
×
×
  • Create New...