Everything posted by Gunman
-
Getting Equipment/Inventory
Umm I am not gonna spoon feed it all to you but try this building the logic of the codes with the steps it would take to make this happen. Example. If I was going to check if I had a iron scim equipped for a basic suicide combat script for like 10/10/10 melee stats. 1. Check if the iron scim is equipped. If so go to location and kill for 10/10/10 2. if not equip. equip it. (For some reason I feel I am spelling it equip wrong after looking at it so much...) 3. if not in inventory walk to nearest bank. 4.open bank. withdraw item. Then equip.Then walk and slay for 10/10/10 (and if not in the bank then logout) If you were asking for the api commands since I know the api list thing isn't very friendly to beginners. Remove the **** and insert what it tells you to and what you need. getEquipment().isWearingItem(EquipmentSlot.****the slot Weapon or Legs*****) getInventory().contains(****Item you wish. can use "" and put item name in between or the item id*****) getInventory().getItem(****same as contains****).interact(*****action like "Wear" or "Wield" also used for "Use" when using an item on something) // You will be using a lot of of differnt getBank() variations like getBank().open and getBank().contains() also don't forget to check to see if the item exists before withrdrawing it (getBank().Withdraw is the start pick which one you want). Hope this helped but I am not gonna give you the fully coded method for doing this. 1 I am lazy 2 probably better not to so it can help you learn Also I think you are over thinking it just deposit inventory and all equipment if it's not empty Or if a certain about of inventory slots isn't open. Then check for items and withdraw them and equip them if needed.
- AIO MTA
-
[F2P] 50-100k/hr Tinderbox Looter (No Requirements)
Actually tho LOL
-
[F2P] n33bWineGrabber 150k-200k/hr (2nd Floor Chaos Temple)
Requirements 33+ Magic Level 500+ Total Skill Level 1x "Zamorak monk top" 1x "Zamorak monk bottom" 1x "Staff of air" Law runes (About like 100-150 an hour you wish to run the script for) Optional (but recommended) 37 Magic Level (to teleport to Falador when banking) Water Runes (Grab like 10 per hour you wanna run the script for) TO RUN WITH MIRROR MODE Change the MS Reaction time to 50 Notes about v2.00 v2 was made to be as fast as possible, that being said the speed is very inhuman... Like insanely. Just use v1 if you wanna miss more wines but have a more human reaction time, or you can try adjusting mirror's reaction time. Your choice. Also side note, v2 may have some bugs as I didn't bug test very long 😛 fill out a bug report and I will push a fix...Maybe Version 2.00 n33bWineGrabber.jar Version 1.00 n33bWineGrabber500Skill.jar Bugs? 1. Mirror Mode or Stealth Injection? 2. What does the Logger say? 3. Provide pictures or videos if you can thanks. If anyone is interested in a wine grabber for the base floor, there's one on the SDN. Called "Wine telegrab" by camaro09. It's free. SDN Link https://osbot.org/mvc/sdn2/scripts/15 Thread Link https://osbot.org/forum/topic/157944-wine-telegrab/
-
Getting instantly banned
I would consider a insta ban to be you create a account and 5-10 minutes of botting you are banned. Not creating it and it's already banned that would be stupid for them to do lol
-
Getting instantly banned
Well yes if you create 1000 accounts then yes it can happen but on the degree that this person and I are botting no it won't happen.
-
Getting instantly banned
Not 100% true. I have botted 2 x 10 accounts doing tutorial island at once for making testing accounts. 15/20 are still unbanned even after about 8 have botted 10 hours straight which I my self find very hard to believe.
-
If you had $1-2K+ to invest, what sort of botting would you do?
Well you could bot pvp world waters of jugs in p2p. It makes like 40-60k an hour if I remember right and you risk very low gold since it was cost like 30k gold per account. But you can't have all your bots doing that so you would need to spread them out to something else after. So maybe like 50-100 could do that and move bots over to another method like buying rune packs or something. Air packs was making like 500k an hour for me a while ago when you could sell air runes for 6 gp somtimes. But that only lasted like 4 days.
-
If you had $1-2K+ to invest, what sort of botting would you do?
I would get a giant farm to terrorize the rs players. I would make a bunch of bots that walked around Lumbridge pretending to be Nazis and marching in sync chanting all hail Hitler.
-
Could use some help with first script
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); } }
-
Could use some help with first script
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
-
lul banned for botting never botted
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.
-
Could use some help with first script
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.
-
rapid lock to ban
My guess is the IP is flagged for immediate locking and disabling. I had something similar change IP then you should be good.
-
Wine of Zamorak Telegrabber [F2P][90k/h+][SUPER FAST]
Maybe he might. I actually have a script like this I made for upstairs but I'm not gonna release for a personal reason.
-
client - major issue
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.
-
How to deal with baldness
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.
-
Perfect Miner AIO
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.
-
Perfect Miner AIO
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.
-
no renews
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.
-
Khal Motherlode
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.
-
2DAY moderate bot ban
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
-
ive read every post for 5 days
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.
-
Khal Motherlode
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.
- [Dev Build] OSBot 2.5.46