Jump to content

Magerange

Members
  • Posts

    396
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Magerange

  1. Sounds great! Is that 100% of the time though? Also, how do I interpretate the construction propertly? 'Tabs.INVENTORY.isDisabled(*what comes here*)'
  2. So I've been trying my hand in a few quests and trying to create my own 7qp script. However, I can't seem to get past the fact that cutscenes are being interrupted (e.g. script talks to NPC again if the cut-scene interrupts dialogue). I've tried using different configurations, etc. Doesn't seem to work... The problem is that I don't know what other parameter throw in the 'if' besides NPC checking. The NPCs are in the cut-scenes. Here are the problematic snippets. Both of them have cut-scenes, so I have problems with both. if (Juliet != null) { Juliet.interact("Talk-to"); Utils.condSleep(15000, 3000, () -> dialogues.isPendingContinuation()); } if (dialogues.isPendingContinuation()) { dialogues.completeDialogue(); Utils.condSleep(10000, 500, () -> configs.get(144) == 60); } if (configs.get(144) == 60) { log("Going to the crypt with Romeo"); walking.webWalk(VarrockCenter); } if (Romeo != null) { Romeo.interact("Talk-to"); Utils.condSleep(15000, 3000, () -> dialogues.isPendingContinuation()); } if (dialogues.isPendingContinuation()) { dialogues.completeDialogue(); Utils.condSleep(10000, 500, () -> widgets.isVisible(277, 15)); } FYI Utils is a different class for conditional sleep (credits to @nosepicker for making it convenient).
  3. Not profitable. You probably need invest like 10k+ in a warehouse full of machines in order to be profitable. Perhaps, since we are in EU, you could get cheap electricity if you could figure out a scheme to get some of those grants for alternative energy (since EU is pro alternative energy).
  4. what's with all the russians on the board? As for those who discredit Estonia as a business place, let me just mention some - Skype, Transferwise. I envy them because my nation is only capable of potatoes.
  5. I've been exploring the worldhopping API and I have a question regarding it. New accounts usually (when trying to hop world) have this message popping up: The command 'worlds.hop(301)' will tackle this message for new accounts or it will get stuck? I haven't had the chance to test this on my accounts yet (probably will in a day or two), but perhaps you guys have already done that?
  6. Magerange

    Knew it.

    Fools gold. Best of luck though!
  7. Are they your accounts? If you bought them, perhaps seller messed up and re-sold already sold ones...?
  8. I was quite bored yesterday and decided to create a woodcutting script (yeah, I didn't start with woodcutting like normal people). However, I couldn't tackle one thing - when it has recognized a tree and clicks on the tree to cut, it spamclicks (not excessively, but quite crazy) on the tree untill it starts cutting it. This also results that if it has more than one 'closest trees', it spamclicks between those two untill it finally gets to one by accident and starts chopping it. How could I make it to click the tree not so commonly? I've added my snippet below private void chop() throws InterruptedException { Entity tree = objects.closest(chopArea, "Tree"); if (!chopArea.contains(myPlayer())) { walking.webWalk(chopArea); } if (tree != null) { Script.sleep(Script.random(775, 975)); if (!myPlayer().isAnimating()){ tree.interact("Chop Down"); new ConditionalSleep(10000) { public boolean condition() { return !tree.exists() || !myPlayer().isAnimating(); } }.sleep(); } } }
  9. Alright, I guess we'll find out on the 26th of August. Best of luck with your bet! 10 pound bet does seem kind of weak just because of all the confidence you expressed towards McGregor, but that's just my opinion.
  10. I give him 99% to win, I give Conor a punchers chance. The stat sheet say 49-0 and that is all that matters. About age - there are many boxers that have fought past the age of 40 and won against BOXERS (Foreman, V.Klitschko). It's all about how you take care of your body, and Floyd does that. Plus, he has stated that he will return if the money is right (and I guess it finally is, it is rumoured he will collect nearly $ 400 M.)
  11. One of the best pound-for-pound boxers EVER, who went 49-0 against PROFESSIONAL BOXERS will lose to some dude who has never boxed professionally? Really, guys? You need some reality check. Sure you can bet 10, 20 bucks on McGregor just for 'WHAT IF', but legitimately believing that he will win is just straight up delusional. Get your heads out of Conors ass for crying out loud. I put this video in a topic before, but obviously some of you have missed it, so I'll put it here too. This is Conor sparring a professional boxer who hadn't sparred for a month. And he still kicked his ass. Conor is just too slow for boxing. Imagine what he could do against the greatest defensive boxer ever AKA Floyd Mayweather...
  12. Thanks! Could you be more specific on how I could improve it and prevent this from happening? I use CLI to start the clients and mass-start around 25 - 30 with some sleeps between them. I also have 1 proxy per 5-6 accounts. I've noticed that if this happens it most likely happens with all the accounts on the same proxy.
  13. Alrighty, here's the picture with this error: I am still yet to catch this in action, but perhaps someone already knows this...
  14. How can you prove that they are handmade though?
  15. Hmmm, still getting a couple of accounts with 'LOGIN ERROR: -3'. Before this text it has some kind of 'Event executor failed, taking too long' text. Failed with Screenshot for proof (thought I made it, closed the client, turns out I didn't...), but I have no doubt this will occur more... After I check on the client it still seems to be 'in the script', but I can stop it. When I do and try to restart the same exact script client has no reaction towards the request (it starts the script, but nothing happens, just log in screen with blank name/password logs). What am I doing wrong? Has anyone had something similair? No, it is not scripts fault, I can easily log in and re-start the script manually.
  16. Stop being delusional, people. Like come on, what chance does a dude with close to none boxing background has against one of the best pound for pound boxers ever... Props to McGregor for pulling this off, he's gonna get paid big time. His only chance is to dance around and duck Floyd and it will probably last more than 4-5 rounds. For all delusional McGregor fans - here's a video with Conor boxing a professional boxer who hadn't put gloves on in a month. And he still kicked his ass.
  17. Awesome, thanks! But what about negative values? What creates those?
  18. I've made this topic to discuss what specific [#DEBUG] messages in OSBot logger mean. For instance, I'd like to know what does 'log in code -3' mean? Found one of my accounts loggoed out in, with script not stopped, opened log in screen, but details not written in. Account was not banned and script was still able to run.
  19. Magerange

    Oak prices

    Not really, the planks have gone to under 450. Now they have been rising, but still it's probably nowhere near 500+ ea like they were a few months ago As for the oaks - it's probably like 20-25k / hr now lol, I guess?
  20. inb4 jagex assigning manhunt
  21. I had a scripter from here going over it because of this. Didn't find anything. Thanks! Will try.
  22. Recently I have been having some Strange memory errors in the client log. Perhaps someone knows what is causing the problems. I have added some pictures below. I use lowcpu and mem 1024.
×
×
  • Create New...