Jump to content

GPSwap

Trade With Caution
  • Posts

    476
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by GPSwap

  1. 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
  2. Might steal that idea lul
  3. there is 2 for download somewhere on these forums, custom ones are made for you
  4. 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
  5. Thats not how you upload scripts for osbot please refer to the steps here : https://osbot.org/forum/forum/181-sdn-requests/
  6. come in chatbox il send you some stuff
  7. set a enum filled with possible foods and check which has most profit a the time
  8. GPSwap

    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
  9. Do people pay more for hand done tutorials than botted? yes Do people actually buy hand done tutorials? nope
  10. 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
  11. GPSwap

    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)
  12. Runeload went quite and died because they was selling users IP's and I use OSB pro
  13. 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 ?
  14. 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); } }
  15. 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
  16. 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;
  17. 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.
  18. 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.
  19. not botting = time waste = money waste 24/7 or dont bother
  20. GPSwap

    Hello!

    'ello, I enjoy the name reference XD
  21. Okay, so post on the script thread to Czar knows something up and can help you and or fix it
×
×
  • Create New...