Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/22/15 in all areas

  1. will update whenever I get more
    6 points
  2. Dear community, As most of you know Jagex released the Free to Play version of the OSRS game again today. I am very excited, because this will create many new opportunities for botters. With the past couple of months being about many releases of OSBot to strengthen the bot's stability, we have managed to expand our user base again. I am very happy about this and we should thank the entire staff team for all of their efforts! Thanks to @Alek @Zach @Maldesto @MGI @Divinity @Dex @Noah @Oliver @Anne @Basic and all ex-staff members who have contributed over the past months! But not only Jagex is bringing new things. We will be bringing some very nice things to the table in the time to come. The first thing will involve an entirely new way of loading the OSRS client in OSBot that will lower chances of Jagex being able to flag players as bots based on the client. Right now all bots out there suffer from the same issue, Jagex is able to flag bot users based on the client. This is not only the case for OSRS but also for RS3. On top of this, it will allow us to become the first bot in history that will allow users to use a proxy per tab, instead of a proxy per bot application. This new way of loading the OSRS client will be implemented in the OSBot 2 client as an option to use. This will stand for this feature its BETA. You will be able to use the old loading and the new loading, so if there is a bug you can report it and we can have it fixed for the official release. On another note, we will be bringing forward a special collection of new scripts. First of all, we will make available a collection of VIP only scripts written by some of the best script writers that will be newly introduced to OSBot soon. Secondly, there will be a special script collection written by the same script writers that will guarantee an overall level of quality and maintenance. These scripts will get implemented and become available over the coming months. We hope you are just as excited as we are for this all to be deployed! Sincerely, Maxi & the OSBot team
    4 points
  3. 10 years old, is this your first time on the internet?
    4 points
  4. Members Online Today: 1737 I feel like The Hero of Time
    4 points
  5. Dear community, I am looking for people who are having the SSLHandshake exception. I have written a fix for it, but I need some users to test it before I release it. Please PM and I'll provide you with a test client. Sincerely, Maxi
    3 points
  6. I'm yet to watch it. Just because of the sex scenes.
    3 points
  7. Just posting my old work I done around 2 years ago on osbot. Note that this work was done 2 years ago and doesn't represent my current skill/experience.
    2 points
  8. Maybe cus ur a lil pussy
    2 points
  9. It could be, but theres always a risk of delayed bans on accs while selling....
    2 points
  10. Shit movie , good porn.
    2 points
  11. add -> !cow.isUnderAttack() You should be useing a Filter instead, this code willc ause the script to pause it the closest cow in underattack. use this: NPC cow = script.npcs.closest(new Filter<NPC>() { @Override public boolean match(NPC npc) { return npc != null && (npc.getName().equals("Cow") || pc.getName().equals("Cow calf")) && !npc.isUnderAttack() && npc.getHealth() > 0; } }); You could also check death animation from the cow are check if the cow is over 0 health so it prevents clicking deaths cows. Goodluck
    2 points
  12. Use of a filter would be appropriate here A filter is a way of it only accepting a entity if it meets all the criteria. Currently your only criteria is for the entity to be named "Cow" which, even with the checks underneath will still find any cow at all. The only reason you dont attack one whilst fighting is because of some of the checks underneath. Your check in filter form would look like: NPC cow = npcs.closest(new Filter<NPC>() { @Override public boolean match(NPC npc) { return npc != null && npc.getName().equals("Cow"); } }); Which checks would return the same but you only want to find a cow not in combat so you'd need to add more checks NPC cow = npcs.closest(new Filter<NPC>() { @Override public boolean match(NPC npc) { return npc != null && npc.getName().contains("Cow") && !npc.getName().contains("Dairy") && !npc.isUnderAttack() && npc.isAttackable() && npc.getHealth() > 0; } }); This check checks for the name, and would allow inclusion of the little cows but excludes dairy cows after it has identified the fact its a cow it moves on to check: Is the npc under attack? is the npc able to be attacked by your player? is its health > 0? (avoid clicking on cows which are dying) you can add as many checks to this as you like. Sorry if my explanation is bad
    2 points
  13. Perhaps what you might find easier is having a handful of pre-recorded paths, maybe 2 or 3, each slightly different, and when walking the path it would pick a random one of the three each time. As far as randomisation goes, that's not a too bad way of doing it, and its nice and simple too Apaec
    2 points
  14. 2 points
  15. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Chop & Bank (Presets) Preset locations for quick a start without too much settings to choice from (Barbarian assault, Castle wars, Catherby, Draynor, Edgeville, Falador-East, Gnome stronghold, Grand exchange, Hardwood grove, Mage training arena, Neitiznot, Port sarim, Rimmington, Seers, Varrock-East/West, Woodcutting guild, ...) - Chop & bank (Custom) Chop on any location of your choice Set a chop position and a chop radius Select the tree type you want to chop Banks at the closest bank possible - Chop & Drop Chop on any location of your choice Set a chop position and a chop radius Select the tree type you want to chop Drops all logs (unless fletching is used) Option to fletch your logs into arrow shafts OR bets item possible based on your level and Logs UIM mode (Only drops logs, carefull with bird nests etc.) - Redwood Option to drop logs instead of banking - Forestry support (Struggling sapling, Tree roots, Fox, Pheasant, Ritual circles, Leprechaun, Entlings, Beehive) - Log basket support - Bird nest pickup support - Axe special attack (Crystal, Dragon, Infernal, ...) - Progressive axe upgrading - Humanlike idles - Menu invokes - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 569:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot managers you do not need to specify -script 569): -script 569:TaskList1.4515breaks (With breaks) -script 569:TaskList1.4515breaks.discord1 (With breaks & discord) -script 569:TaskList1..discord1 (NO breaks & discord) Proggies:
    1 point
  16. I forwarded this and someone will look into it as soon as possible! Please make sure that you restarted the client or clicked the refresh button!
    1 point
  17. Thanks, I use to run a service just like you during my spare time but times changed. I will probably set up a free shop sometime soon during my free time of course.
    1 point
  18. Holy crap dude this is jus awesome, can't find one that is any better than the other
    1 point
  19. huge vouch, czar is an excellent scripter.
    1 point
  20. Sorry about that mate. Good-luck finding proxies.
    1 point
  21. Sorry to say I won't buy this script, because I already have APA's, love your range guild script though.
    1 point
  22. 1 point
  23. i facepalmed so hard that they didnt allow it
    1 point
  24. You can't make a joke about something that doesn't exist. 0/0 didn't laugh. I don't get it you guys.
    1 point
  25. 500 posts with no friends "for ever alone"
    1 point
  26. Just bought the script, looks very nice Could post a progress here later if its allowed :P
    1 point
  27. can i get free trial pls ?
    1 point
  28. thank you for rushing it, i will look out for future bugs and will inform you, also will post a proggy when i can get to it.
    1 point
  29. Alright let me fix barbarian village banking ETA ~15 minutes Yes, you're right. Banking doesn't work in version 2.5. However, I just ran version 2.6 and it seems to be working perfectly. Sorry about that guys, 2.6 will be updated as soon as an admin verifies it.
    1 point
  30. 1) you are not generating a path, you are generating a position, a single position. 2) you are making the x and y positions have a variance, if you happen to generate a random position that is not walkable, then the if statement will not execute. 3) if the position is too far to walk to then it will do nothing. LocalWalker will not take you cross regions without a path unless the region is cached, then it might (depends on client implementation). If you are trying to walk a path, you need to give it a path. This will walk from one single point (the player) to the sudo random position that you are generating within the same region. If that is what you want to do then this will kind of work maybe sometimes.
    1 point
  31. Dude you still need to tell us why Karamaja Banking doesn't work its the whole purpose why I bought your script. and paid for VIP
    1 point
  32. On a second look, the IP.chat server seems to be reachable and the api is reachable. I'll keep this in mind, I'm all for this feature.
    1 point
  33. Come on sellers admit it. Its just a marketing ploy. If you can make a post saying you are online everytime you are looking to sell then you surely can update the prices.
    1 point
  34. I think it's the fantasy of a lot of gamers, making their own game which others get to experience. What a lot of people can't grasp is the complexity involved in undertaking such a project. Fortunately I've made a few games before and know what I can and can't do as a solo developer. Utilizing my previous core from the Cake Quest project, I already have a solid 2d foundation to build my game off of. The multiplayer aspect will be very controlled and most (if not all) aspects will be checked by the server in an event-based system to prevent hacks. I don't want to type out a long timeline explaining everything I plan to add, but I've sat down and worked out a lot of the game mechanics. 17 Feb 2015 - Created a drawing system to paint objects from separate classes to the main JPanel. Cake Quest was small enough to have all the paint code in a single class, however this project will be too big. 18 Feb 2015 - Cleaned up some code and worked on the foundation of the "Battle Room". The battle room/scene is where you will fight other npcs (and eventually other players).
    1 point
  35. Leak anyway pls.You can skype me them BigDickMysteryy L0l
    1 point
×
×
  • Create New...