Jump to content

Athylus

Members
  • Posts

    156
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male
  • Location:
    Fantasia
  • Interests
    Engineering

Recent Profile Visitors

2026 profile views

Athylus's Achievements

Steel Poster

Steel Poster (4/10)

21

Reputation

  1. public class CObject extends MethodProvider { public boolean finished = false; public boolean onLoop() { if (...) this.finished = true; } } public class Main extends Script { private CObject obj = new CObject(); public void onStart() { obj.exchangeContext(getBot()); obj.onStart(); } public void onLoop() { switch (state) { case 1: if (obj.onLoop()) then Main.state = 2; break; case 2: Main.state = 3; break; case 3: log("Code never reaches this point. Why not?"); break; default: break; } } } Why does case 1 not work? It does not seem to read the variable correctly.
  2. Received a p2p ban after 30 mins botting, lol. Only did three quests. Then some by hand. Another acc banned after 5 hours p2p botting private hunter script. Starting to think f2p is the way to go, even member accs get instant banned.
  3. Oops! Something has happened! Session has expired due to inactivity or VIP is needed to run multiple bots at the same time and be purchased at out store at www.osbot.org! Ok, cool. But I am running one instance of OSBot with one bot on it, with a running script. Restarting doesn't help. What can I do?
  4. Kernighan and Ritchie for C (the one explv linked). If you want to learn more about memory management and scheduling algorithms you can read Tanenbaum on minix.
  5. Proper introduction time! I've been around for a while, and I have come back to give back to the community. Scripting for runescape is what got me started on this journey/career path. As a kid I was fascinated with runescape and also cheating at games, at one point I found a website that is probably long gone. It was a java bot back in 2007, with some little robot thing icon which I remember clearly. I downloaded and script and was amazed with runescape 'playing itself', and so my journey started. Now I am here, at OSBot, currently writing my free questing script. Hello!!!
  6. I've had unexpected behaviour in the past when running the same script on multiple tabs in the same client.
  7. Shocker! Good luck with study my man.
  8. Life can be tough, especially when you feel like you have lost meaning. Perhaps you can find it in another way in the navy.
  9. I thought using streams and accessing databases is blocked from within OSBot. Also you can simply have your accounts add your mule and then use your private status to trigger an event (trading in this case).
  10. Possibly because you are calling the Axe class from GoGetAxe class and have not exchangedContext between these two classes. Can't say for sure. Let me know if that works, or if it does not.
  11. Cool. Following. Made a 500M profit myself last year with a fletching farm. It's all doable, if the desire is there.
  12. In my farming script I want to a certain amount of time before relogging after being done with my patches. To do this I run from command line and allow norandoms. When my run is done, I logout and Thread.sleep(x). Then the script resumes. Is this foolproof? Sometimes my script glitches out, and when I run two accounts it might get stuck. Is this because of the Thread.sleep? Then there's the ScriptExecutor. I could allow randoms, logout, pause(), use a Timer object and resume(). What would be the best, fool proof way?
  13. Same behaviour patterns, perhaps. It's all a guess anyway. Also just bot 24 hours a day. Got 45M fletch XP that way.
  14. I see it now, cool! I was mixing up the the array result with the array actions. Thanks.
×
×
  • Create New...