Everything posted by GPSwap
-
Private Script or A public premium?
Private scripts definately cost alot more but if you have certain features you want it the best way to get a script tailored to you rather than the more AIO approach of premium ones
-
Please Stop
Might steal that idea lul
-
Is there any way to add mass accounts to osbot?
there is 2 for download somewhere on these forums, custom ones are made for you
-
Is there any way to add mass accounts to osbot?
There are multiple cli launchers on osbot for anyone to use, you give them what scripts and accs (if not using a txt file) click run and itl open all the acc you want, but the massive farmers usually have custom done launchers and OsbotUsername:OsbotPass is your accs for osbot not your ingame acc
-
OSbot Down Black Screen?
iiiiiiiits thursday
-
osbot.org/gitweb wont open on laptop[solved]
Thats not how you upload scripts for osbot please refer to the steps here : https://osbot.org/forum/forum/181-sdn-requests/
- To all you F2P botters.
-
Determining what item to buy?
come in chatbox il send you some stuff
-
Determining what item to buy?
set a enum filled with possible foods and check which has most profit a the time
- Banned because of Reddit?
-
GPSFiremaker
Sent, since there seems to be interest in this I'll add the polish onto the script and get OP changed to v2 version when I have time
-
Do people pay more for hand-done tut island accounts?
Do people pay more for hand done tutorials than botted? yes Do people actually buy hand done tutorials? nope
-
How do I declare an NPC and interact with it?
Well if your using bank booth that's a object not a npc, I would suggest you don't use ID's and use Strings instead
-
GPSFiremaker
It had a few issues code side that alek wasn't happy with for sdn, I have done most of a rewrite for it thats now progressive, would you like me to pm you a download link for that for you to try? (it works great I just havent done extensive testing on it because I have been working on some other projects)
-
soo i guess its broken
Runeload went quite and died because they was selling users IP's and I use OSB pro
-
barrows question
take the cost of the extra supplies - barrows tab, then see what the time difference is between 2 chests in 1 run vs 2 chests in 2 runs and do the math ?
-
Using if statements for every method?
That looks nicer and I'm sure it runs better, but when doing banking its always good to put a check to make sure its in your bank and stop the script if it isn't so that your bot doesn't get stuck in a loop trying to withdraw a item you don't have (code example below), also I would put your deposit before you withdraw your knife incase your invent is full and you don't have a knife or it will loop the same thing repeatedly unable to get a knife. if (!getInventory().isEmptyExcept("Knife")) { if(getBank().contains("Knife")){ if (getBank().depositAllExcept("Knife")) { Timing.waitCondition(() -> getInventory().onlyContains("Knife"), 5000); } }else{ log("No knife is found stopping script"); stop(true); } }
-
Using if statements for every method?
okay, so let start with those sleep timers, doing a sleep thats random between 300ms and 600ms is pointless, the idea of using if statements to check if a action is completed is so you can use conditional sleeps so the script can flow nicely, static sleep should only be used in very niche places. first sleep should be condition bank.isOpen() second should be inventory.contains("Knife") third should be inventory.isEmptyExcept("Knife, "Arrow shafts") fourth should be inventory.contains(getLogType()) watch it run how you have it, then do the change to that ^ and just watch how different the script will act
-
Cases utilized correctly?
you check for your fish_fish state first, so if that is true it wont move past it, do something like and it should work if (getInventory().isEmptyExcept("Fly fishing rod", "Feather", "Raw salmon", "Raw trout") && barbarianFish.contains(myPlayer()) && !getInventory.isFull()) { log("FISH_FISH"); return State.FISH_FISH;
-
Cases utilized correctly?
if your invent is full of raw fish, if (getInventory().isEmptyExcept("Fly fishing rod", "Feather", "Raw salmon", "Raw trout") && barbarianFish.contains(myPlayer())) { log("FISH_FISH"); return State.FISH_FISH; will still return FISH_FISH, as technically inventory is still empty except for those items, add in a check for if inventory is not full and you should be good.
-
"Summer, sun, socialism!"
Socialism never works because; 1. It flat out goes against basic human nature. 2. because you need someone in a position of power to create a socialist structure and keep it running, and that never works because yaknow, you get the everyone is equal but some more more equal that others situation.
-
Question to goldfarmers
not botting = time waste = money waste 24/7 or dont bother
-
Hello!
'ello, I enjoy the name reference XD
-
Script doesnt do anything
Okay, so post on the script thread to Czar knows something up and can help you and or fix it
-
Script doesnt do anything
Check the logger to see if that gives you any info, and post on the script thread so czar can know somethings up