Jump to content

Gunman

Super Moderator
  • Posts

    3553
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Gunman

  1. Don't change anything and walk away from the fishing area then run the script with the logger open. That's what happens if it does == null. Making it only use the that section of code if it's only !=null. If you wanna be spoon fed the code it's this. if (spot != null) { spot.interact("Net"); MethodProvider.sleep(5000); } I guess you could add it to your while so it would be like this. But you will need to move the Entity spot = getNpcs().closest("Fishing spot"); as @Imthabawse said. It is better practice as well in my opinion to code it this way as well. Entity spot = getNpcs().closest("Fishing spot"); while (!myPlayer().isAnimating() && spot != null) { spot.interact("Net"); MethodProvider.sleep(5000); } }
  2. You need to null check the net void. It's one line of code and a pair of these {}. If not your script won't work right if == null
  3. Not completely true but for the most part past 5 banned accounts you will start getting banned in about I would say 1/3 to 1/2 the time it took for the first account.
  4. I would say you need to redo your logic. For starters you aren't null checking anything and what does the console say? Also I have no idea if this matter but move //Checks closest fishing spot and clicks it (supposedly) private void net() { Entity spot = getNpcs().closest(1530); spot.interact("Net"); } //Counts empty slots in inventory private int invCount() { return getInventory().getEmptySlotCount(); } //drops all shrimps private void drop() { getInventory().dropAll(317); } Out of on start and put it above @Override public final int onLoop() throws InterruptedException { And if you need an example of what I mean by null checking. private void net () { if (getNpcs().closest("Fishing spot") != null) { getNpcs().closest("Fishing spot").interact("Net"); } It will check to see if the fishing spot is availability before trying to interact with it. Like when you cut a tree and the stump is there then it's == null but when you can chop it it's != null. Also you need to use sleep conditions. Example new ConditionalSleep(number of mili seconds you want to sleep. 1000 is = to 1 second) { @Override public boolean condition() { return !myPlayer().isAnimating(); // return means what condition is met to overide the sleep condition timer. If it is set to sleep 100 seconds but you stop animating then it will over ride it and continue the code. } }.sleep(); I recommend checking out this scripting guide if you haven't looked at it already it was really helpful when I was learning scripting.
  5. My guess is the IP is flagged for immediate locking and disabling. I had something similar change IP then you should be good.
  6. Maybe he might. I actually have a script like this I made for upstairs but I'm not gonna release for a personal reason.
  7. I know there is a pc setting that will reduce resource utilization if not focused. I don't remember the setting but this shouldn't be a osbot issue.
  8. Just accept it and get ripped and big asf. Buy a pair of sunglasses. Then grow a mean beard and mustache and wait till you 60''s and maintain your body. And boom.
  9. Yes this happens on both stealth and mirror. Oh thats good. I know it can be hard to keep replying to all the posts you get with the amount of scripts you have on the store.
  10. Suggestion for the pre hover ore option is to make it anti-patterned. It will literally hover over the exact same position every single time. Then when goes to interact with the next ore it then moves the mouse to a random spot on the ore then clicks(I turned on mouse position and it pre-hovered the same values). Uses this pre-hover option has gotten some accounts disabled nearly instantly and I mean within minutes. I use another account on the same ip but a different mining script or yours for the matter and not use the pre-hover and I don't get instantly disabled. Just out of curiosity what happened to your Perfect Agility I noticed it wasn't on the store anymore? I already own it but just noticed it wasn't in my script collection but still on my script list in the client. And saw Mald say it was taken off the store for a month.
  11. Well some issues with a onetime payment is there is no consistent money income which can cause some people to lose motivation for updating and supporting their script.
  12. If I see it happen again I will but the only account I have right now doing motherlode is a mirror one and it got stuck once in the last 8 hours of running the script and it was set to randomly. And when it did get stuck it wasn't the same place as the other account. Also it kept getting stuck here on the other account. Only got stuck when it was going back to the mining area.
  13. If the 2 day isn't squashed it's 100% gonna be a perm the next ban. You will normally get 1x2 day if you are lucky and then the big perma ban. If the auto clicker is like once every 15-45 seconds or something like that then you probably will be fine
  14. You sure there is nothing wrong with your compute it's self? You said something about windows 10 you think you may have some corrupted windows files? Maybe try opening "Windows Power Shell" As admin and typing "sfc /scannow" it would look for corrupted windows files that might be causing some problems. It can take a while depending on your system specs and storage usage. I have no idea if this will work just throwing ideas out there.
  15. Hey Khal sometimes randomly the script gets stuck infront of rock fall and won't mine it but will keep clicking where it wants to go. It's with SI. The only thing the console says is [INFO][Bot #1][05/04 12:33:52 PM]: WebWalkingEvent; We have reached the final destination! [INFO][Bot #1][05/04 12:34:27 PM]: WebWalkingEvent; Terminated because of break condition! [INFO][Bot #1][05/04 12:38:40 PM]: WebWalkingEvent; We have reached the final destination! [INFO][Bot #1][05/04 12:39:05 PM]: WebWalkingEvent; Terminated because of break condition! [INFO][Bot #1][05/04 12:43:11 PM]: WebWalkingEvent; We have reached the final destination! [INFO][Bot #1][05/04 12:44:23 PM]: WebWalkingEvent; Terminated because of break condition! [INFO][Bot #1][05/04 12:48:28 PM]: WebWalkingEvent; We have reached the final destination! [INFO][Bot #1][05/04 12:49:11 PM]: WebWalkingEvent; Terminated because of break condition! [INFO][Bot #1][05/04 12:52:25 PM]: WebWalkingEvent; We have reached the final destination! The Status says "Walking to right area". I think the rockfall is re-spawning right in front of the player as it's trying to walk to the area then gets stuck. My selected Areas.
  16. Gunman

    endgame

    Someone dropped huge spoilers in the osbot discord... People were pissed af ...Wander who that was...
  17. Vip wasn't made so you can use open source scripts. It's main purpose is to give osbot a monthly income which inreturn for paying for Vip you gain the ability to open unlimited amount of bots, access to Mirror Mode, a % off all premium scripts for as long as you are Vip or above, and probably some more signature space I don't remember. Also if you are really only spending the money on Vip for that reason why not just buy a tutorial island script off the sdn for a onetime fee with updates when something changes?
  18. Or the fact your mouse hasn't moved at all in the past 12 hours and just has been clicking lol. When you think about that it is a little sus.
  19. Indeed it is not something someone would ban for solely playtime alone; But it would put you on there radar which then would lead to a ban more than likely.
  20. I mean to a degree yeah there bot busting system isn't as smart as people think it is.
  21. Well for example right now I have a mirror mode only f2p play account that is a month old and currently trying to get it p2p by it's self. I botted about 4 hours a day. I would recommend botting no more than 4 hours a day and no more than 3 hours without a break. I got an account with a 2 day ban and that makes the risk of a perm higher since it was already banned for bot busting. I botted a little too long on a few days because I left the house and forgot to stop the bot. Still haven't been banned and been botting on a daily since it was unbanned. I do recommend getting a few alts to test scripts on so you know how to set them up so you don't jump off a cliff with an account you are decently invested in.
  22. @Turkoize Here's my f2p mirror only that I am currently working to get him to p2p by him self. He's like a month old. And I 99% botted. I am botting wines atm to on the 2nd floor of the chaos temple to get him there. And rip your account better luck next time
  23. There was your mistake. When botting include the hours played legit in the day also. If you play 6 hours in day I would recommend not botting at all that day. Only bot on days you are gonna play 4 hours or less in. I did a similar mistake by playing 7 hours then I tested a script for about 15-20 minutes it worked perfect but I got banned because I played 10 hours that day even tho 90% of them were legit.
  24. Did you only bot for an hour or 2 on those days or did you also play a ton legit? like did you bot an hour and played 5-6 hours legit? Or only botted and thats it.
×
×
  • Create New...