Jump to content

Nbacon

Members
  • Posts

    251
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Nbacon

  1. I think its try to get to the spot (and that is the click it might ) to fix this I would make bardispenseArea an Area object with a Y by X grid? PS it should be... if (coveyorBelt !=null && conveyorBelt.exists())
  2. Thanks Things I would like to see. Any way to get all WEB WALKER links or a shaded map of all effective area? Apply cli to a script when started inside client? Cli to disable security manager? Stand alone client for only webwalks that all clients can connect to?
  3. Nbacon

    Need some code

    Hello, I am look for someone to write for me a 1 method of the most "optimal" banking pattern. Most "optimal" means the least amount of input possible. Must be able to do Inv+Equipment, Equipment only, Inv only. method head looks like moves bank(Equipment, Inventory), were Equipment,Inventory is a list of items returns a list of moves to do. Must do Bank excess Items list only class for 6 arrows but I have 900 on me banks 894 arrows Ranges of items list can call for coins between 75-80 coins. Deposit items that are not in any lists be able to Handle noted and unnoted items of the same type must handle Equipment list has an iron helm, Inventory list has a noted iron helm and unoted iron helm seemlessly. message me here or on discord inept#0327 before starting tell me your rate. [I will pay in osrs gold] PS I think A* or bfs is the best way to go.
  4. I guess so. The problem I'm getting is as I get further into my schooling there are less and less youtube videos on the subjects. So trying to get the knowledge out a books seemed to be the hardest thing I have ever done. I am so used to the videos, watch a few videos master the topic compaired to books... I will read the same chapter 1000 times and still won't get it. Reading it for the 1001st time won't get me any closer to understanding it. The only thing I can compair it to that most people will understand is Stack overflow vs documentation... Yea, stack overflow has a copy and paste answer but the documentation when done right should help you solve the problem just as well and make further problems easyer.
  5. I like this idea. Skills you wanna learn: Clojure It just makes me feel dumb Reading to learn. At the moment I get most of my info from videos and have a hard time following books. Typing and thinking faster I can type over 100 wpm but I don't think at 100 wpm
  6. I 100% agree that sciprts with unknow code should be sandboxed. So yes you can make and run code out side of osbot.(example below) You can also read files out side of the osbot folder but not write to them(kinda dumb but ok). For me It seems like more of an annoyance than a safety measure because it can be "easy*" bypassed. Ps congrats on super mod *Dumb workarounds
  7. Hello, I would like to know the argument for the security manager. You can do malicious things with it on like read and write files, execute code via the cmd/termal. What is it stopping?
  8. Stop messaging me on discord.... read the "How to use it." again or just give up on it.
  9. What does that mean? Not true. Buy better proxies....
  10. Me doing my bots in kotlin and clojure... Have not got Scala, Jpython or Jruby to work but I did not try that hard. P.S. not possible
  11. Can you add cli to script seletor? I have an issue when you rename a tab if you double click it goes under the window and you can't drag the window.
  12. ExperienceTracker class also look into that.
  13. I've made this recommendation many times but I would go in house and get a few Dell Precision T3600 Workstation. They are super cheap on ebay for pc. 120-250 depending on your needs.
  14. I would say... override the RandomEvent.BREAK_MANAGER and in shouldActivate make that player in square and in onLoop logout and stop script
  15. For me it the chat completer in the api....and the typer. Botting R&J with bulit in chat completer is a 100% ban.
  16. I think you forgot to put them in a package. I compiled and ran your code but... It froze my client --------------------------------------------------------------------------------- Edit found your error. You need to pass a MethodProvider to all class or echange context ... so things like inventory.getItem("Beef").interact("Eat"); can work
  17. Can you look into adding textfield on the "Scipt selctor" that would run the script with CLI.
  18. This is a one month update to this project. I have been doing alot of thing for shcool and work so the prosses is very very small. Things I have done added networking and made a script that runs in the background. Things that it can do atm Status on the account aka logged in; skript runging, location in game and more to come. Start/Stop/Pause scripts Force a break on the script Bring the bot to the front of all prosses. Broadcast/stream the bot and give it inputs Get the log from the bot X the bot out Things I would like to add/do Map of all bots in game Support for larger scipts on the sdn Bank/GE ripper any time you enter the bank it would give that info to the controller Auto Mule Make it more light wieght bots starter Proxie manger Account data base Inject my networking code into osbot so you dont have to start the script to get this controll
  19. We started off so strong lets do B is for bdellium.
  20. This is my supppppppppppppppppppper generic combat code I made almost a full slayer bot out it and it suports Ironman looting. Its writen in kotlin... but it still compiles and runs. http://www.mediafire.com/file/6drc4vhydvbpyhv/methods.zip/file Hope you can find some usefull in it.
  21. if( Im not in combat ){ if(is there loot on the ground? ){ pick up the loot... }else{ atttack some npc... } }
  22. public class x extends Application implements Runnable{ @Override public void start(Stage stage){ ...... stage.show(); } @Override public void run(){ launch(); } } then lanuch it in onStart() with new Thread(new x()).start();
×
×
  • Create New...